From: phk Date: Sun, 5 Oct 2008 10:22:21 +0000 (+0000) Subject: Emit a message when we sleep, so people know why nothing happens. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03b0a179f241d30997c3735183fafb812914ba6c;p=varnish Emit a message when we sleep, so people know why nothing happens. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@3243 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishtest/vtc.c b/varnish-cache/bin/varnishtest/vtc.c index ce399127..6719a303 100644 --- a/varnish-cache/bin/varnishtest/vtc.c +++ b/varnish-cache/bin/varnishtest/vtc.c @@ -253,6 +253,7 @@ cmd_delay(CMD_ARGS) AN(av[1]); AZ(av[2]); f = strtod(av[1], NULL); + vtc_log(vl, 3, "delaying %g second(s)", f); if (f > 100.) { (void)sleep((int)f); } else {