Changeset 735
- Timestamp:
- 03/01/08 05:52:37 (21 months ago)
- Files:
-
- 1 modified
-
branches/binary/server/memcached.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/binary/server/memcached.c
r734 r735 1393 1393 static void setup_bin_protocol(conn *c) { 1394 1394 char *loc = (char*)c->bin_header; 1395 if (settings.verbose > 0)1395 if (settings.verbose > 1) 1396 1396 fprintf(stderr, "Negotiated protocol as binary.\n"); 1397 1397 … … 1405 1405 1406 1406 static void setup_ascii_protocol(conn *c) { 1407 if (settings.verbose > 0)1407 if (settings.verbose > 1) 1408 1408 fprintf(stderr, "Negotiated protocol as ascii.\n"); 1409 1409 c->protocol = ascii_prot; … … 2767 2767 2768 2768 case conn_negotiate: 2769 if (settings.verbose > 0)2769 if (settings.verbose > 1) 2770 2770 fprintf(stderr, "Negotiating protocol for a new connection\n"); 2771 2771 c->rlbytes = 1;
