Changeset 735

Show
Ignore:
Timestamp:
03/01/08 05:52:37 (21 months ago)
Author:
dsallings
Message:

Decreased verbosity around connection protocol discovery.

A lot of this stuff was at v=1. Makes more sense to be at v=2.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/binary/server/memcached.c

    r734 r735  
    13931393static void setup_bin_protocol(conn *c) { 
    13941394    char *loc = (char*)c->bin_header; 
    1395     if (settings.verbose > 0) 
     1395    if (settings.verbose > 1) 
    13961396        fprintf(stderr, "Negotiated protocol as binary.\n"); 
    13971397 
     
    14051405 
    14061406static void setup_ascii_protocol(conn *c) { 
    1407     if (settings.verbose > 0) 
     1407    if (settings.verbose > 1) 
    14081408        fprintf(stderr, "Negotiated protocol as ascii.\n"); 
    14091409    c->protocol = ascii_prot; 
     
    27672767 
    27682768        case conn_negotiate: 
    2769             if (settings.verbose > 0) 
     2769            if (settings.verbose > 1) 
    27702770                fprintf(stderr, "Negotiating protocol for a new connection\n"); 
    27712771            c->rlbytes = 1;