From: Michael Wallner Date: Mon, 3 Aug 2015 10:59:57 +0000 (+0200) Subject: add more logging X-Git-Tag: RELEASE_2_5_2~14 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=a4df85a0ee26bd18d7f7780c19829e3902b11426 add more logging --- diff --git a/tests/helper/pipeline.inc b/tests/helper/pipeline.inc index b7175c1..942d254 100644 --- a/tests/helper/pipeline.inc +++ b/tests/helper/pipeline.inc @@ -11,16 +11,18 @@ function respond($client, $msg) { serve(function($client) { $count = trim(fgets(STDIN)); - + logger("Expecting %d messages", $count); /* the peek message */ respond($client, new http\Message($client, false)); - + logger("Handled the peek request"); /* pipelined messages */ $req = array(); for ($i=0; $i < $count; ++ $i) { $req[] = new http\Message($client, false); + logger("Read request no. %d", $i+1); } - foreach ($req as $msg) { + foreach ($req as $i => $msg) { respond($client, $msg); + logger("Sent response no. %d", $i+1); } });