From: Alex Rousskov Date: Fri, 4 Feb 2011 04:23:47 +0000 (-0700) Subject: Polished debugging. X-Git-Tag: take02~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=79825eb2c8f952464ed6a685b1057b630338e3d2;p=thirdparty%2Fsquid.git Polished debugging. --- diff --git a/src/fs/rock/RockSwapDir.cc b/src/fs/rock/RockSwapDir.cc index c2caf7d92c..6d0b0de56c 100644 --- a/src/fs/rock/RockSwapDir.cc +++ b/src/fs/rock/RockSwapDir.cc @@ -592,7 +592,7 @@ Rock::SwapDir::unlink(StoreEntry &e) void Rock::SwapDir::trackReferences(StoreEntry &e) { - debugs(47, 5, HERE << &e << ' ' << e.swap_dirn << ' ' << e.swap_filen); + debugs(47, 5, HERE << *e); repl->Add(repl, &e, &e.repl); } @@ -600,7 +600,7 @@ Rock::SwapDir::trackReferences(StoreEntry &e) void Rock::SwapDir::ignoreReferences(StoreEntry &e) { - debugs(47, 5, HERE << &e << ' ' << e.swap_dirn << ' ' << e.swap_filen); + debugs(47, 5, HERE << *e); repl->Remove(repl, &e, &e.repl); }