Skip to content
Snippets Groups Projects
Commit 8bbfa91b authored by Janis Daniel Dähne's avatar Janis Daniel Dähne
Browse files

- added logging to file

parent af65c225
No related branches found
No related tags found
No related merge requests found
......@@ -6,8 +6,8 @@
$versionString = '2.9.1';
$rootDirNameToUseString = 'work';
$isDebug = false; //logs debug to STDOUT
$debugOutputAllReturnOutput = false; //if true && $isDebug every response is also written to STDOUT
$isDebug = true; //logs debug (only if next line is true too)
$debugOutputAllReturnOutput = false; //if true && $isDebug every response is also written to a file
$s_testServerCode = 'testServerCode'; # the test server code for one test
$s_testServerMessage = 'testServerMessage'; # the test server message for one test
......@@ -176,10 +176,6 @@ function output($responseCode, $message, $data = null)
global $s_timings_string_separator;
global $debugTimings;
if ($isDebug && $debugOutputAllReturnOutput) {
fwrite(STDOUT, $message);
}
$responseObj = array(
'responseCode' => $responseCode,
'message' => $message,
......@@ -189,6 +185,12 @@ function output($responseCode, $message, $data = null)
$responseString = json_encode($responseObj);
# make sure the file exist and is write/readable!
if ($isDebug && $debugOutputAllReturnOutput) {
#fwrite(STDOUT, $message);
file_put_contents('debugLogging.log', $responseString, FILE_APPEND);
}
echo $responseString;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment