Change info() to nlog()

This commit is contained in:
Benjamin Beganović 2021-01-05 17:45:34 +01:00
parent f267408029
commit 40c5392aa0

View File

@ -158,11 +158,11 @@ class CreateEntityPdf implements ShouldQueue
} }
if (config('ninja.log_pdf_html')) { if (config('ninja.log_pdf_html')) {
nlog($maker->getCompiledHTML()); info($maker->getCompiledHTML());
} }
if ($pdf) { if ($pdf) {
$instance = Storage::disk($this->disk)->put($file_path, $pdf); Storage::disk($this->disk)->put($file_path, $pdf);
} }
return $file_path; return $file_path;