From 60bfa8ff1ab025ac84a3cb18cf28e21dbb1e3bb7 Mon Sep 17 00:00:00 2001 From: Fredrik Thulin Date: Thu, 14 Jun 2012 15:10:44 +0200 Subject: [PATCH] minor debug log fixes --- ykval-common.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ykval-common.php b/ykval-common.php index 6e849a1..0809861 100644 --- a/ykval-common.php +++ b/ykval-common.php @@ -147,9 +147,9 @@ function retrieveURLasync ($ident, $urls, $ans_req=1, $match="^OK", $returl=Fals debug ($ident . " curl multi info : ", $info); if ($info['result'] == CURLE_OK) { $str = curl_multi_getcontent($info['handle']); - debug($str); + debug($ident . " curl multi content : " . $str); if (preg_match("/".$match."/", $str)) { - debug($ident . "response matches " . $match); + debug($ident . " response matches " . $match); $error = curl_error ($info['handle']); $errno = curl_errno ($info['handle']); $cinfo = curl_getinfo ($info['handle']);