Changeset 746

Show
Ignore:
Timestamp:
03/03/08 18:16:26 (6 months ago)
Author:
dsallings
Message:

Reducing verbosity in the binary protocol handling.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/binary/server/memcached.c

    r745 r746  
    11901190    vlen = c->bin_header[2] - (nkey + hdrlen); 
    11911191 
    1192     if(settings.verbose) { 
     1192    if(settings.verbose > 1) { 
    11931193        fprintf(stderr, "Value len is %d\n", vlen); 
    11941194    } 
     
    13751375 
    13761376static void reinit_bin_connection(conn *c) { 
    1377     if (settings.verbose > 0
     1377    if (settings.verbose > 1
    13781378        fprintf(stderr, "*** Reinitializing binary connection.\n"); 
    13791379    c->rlbytes = MIN_BIN_PKT_LENGTH;