--------------------- PatchSet 1582 Date: 2005/08/24 15:13:16 Author: rousskov Branch: squid3-icap Tag: (none) Log: - Polished debugging. Members: src/ICAPClient.cc:1.1.2.3->1.1.2.4 Index: squid3/src/ICAPClient.cc =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/Attic/ICAPClient.cc,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -r1.1.2.3 -r1.1.2.4 --- squid3/src/ICAPClient.cc 19 Aug 2005 20:05:44 -0000 1.1.2.3 +++ squid3/src/ICAPClient.cc 24 Aug 2005 15:13:16 -0000 1.1.2.4 @@ -11,7 +11,7 @@ // initialize ICAP-specific ends of message pipes void ICAPInitXaction(MsgPipe *virgin, MsgPipe *adapted) { ICAPXaction::Pointer x = new ICAPXaction; - debugs(0,0, "ICAPInitXaction: " << x.getRaw() << "\n"); + debugs(93,5, "ICAPInitXaction: " << x.getRaw()); x->init(virgin, adapted, x); // if we want to do something to the transaction after it is done, // we need to keep a pointer to it @@ -22,5 +22,5 @@ // nothing to be done here? // refcounting will delete the transaction // as soon as the last pointer to it is gone - debugs(0,0, "ICAPNoteXactionDone: " << x.getRaw() << "\n"); + debugs(93,5, "ICAPNoteXactionDone: " << x.getRaw()); }