From 4b3ffbfbbae434d624915a69bbeb5d4bd833ffce Mon Sep 17 00:00:00 2001 From: Moros Smith Date: Fri, 17 May 2024 21:42:45 -0400 Subject: [PATCH] get raw output for compiler log file --- pgetinker/Compiler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgetinker/Compiler.php b/pgetinker/Compiler.php index 7fcbf5f..f83d147 100644 --- a/pgetinker/Compiler.php +++ b/pgetinker/Compiler.php @@ -520,7 +520,7 @@ private function link() private function cleanUp() { - $this->logger->info("OUTPUT:\n\n" . $this->getOutput() . "\n\nERROR:\n\n" . $this->getErrorOutput()); + $this->logger->info("OUTPUT:\n\n" . $this->getOutput(true) . "\n\nERROR:\n\n" . $this->getErrorOutput(true)); Log::info("Compile: finished disgracefully"); }