invoiceninja/app/Helpers/Generic.php

43 lines
959 B
PHP
Raw Normal View History

2020-12-24 17:01:34 +01:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 13:20:41 +10:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2020-12-24 17:01:34 +01:00
*
2021-06-16 16:58:16 +10:00
* @license https://www.elastic.co/licensing/elastic-license
2020-12-24 17:01:34 +01:00
*/
use App\Utils\Ninja;
2020-12-24 17:01:34 +01:00
/**
* Simple helper function that will log into "invoiceninja.log" file
* only when extended logging is enabled.
*
2020-12-25 12:29:42 +01:00
* @param mixed $output
* @param array $context
*
* @return void
2020-12-24 17:01:34 +01:00
*/
function nlog($output, $context = []): void
{
if (! config('ninja.expanded_logging')) {
2021-01-15 10:50:27 +11:00
return;
}
2021-01-14 20:31:27 +11:00
if (gettype($output) == 'object') {
$output = print_r($output, 1);
}
2021-08-11 08:06:43 +10:00
2022-07-05 16:15:46 +10:00
// $trace = debug_backtrace();
if (Ninja::isHosted()) {
try {
info($output);
} catch (\Exception $e) {
2021-08-11 08:06:43 +10:00
}
} else {
\Illuminate\Support\Facades\Log::channel('invoiceninja')->info($output, $context);
}
2022-07-05 16:15:46 +10:00
}