1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Helpers/Generic.php

46 lines
1.1 KiB
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
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-12-24 17:01:34 +01:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
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
{
2021-01-14 10:31:27 +01:00
2021-01-15 00:50:27 +01:00
if (!config('ninja.expanded_logging'))
return;
2021-01-14 10:31:27 +01:00
2020-12-24 17:01:34 +01:00
if (gettype($output) == 'object') {
$output = print_r($output, 1);
}
2021-01-15 00:50:27 +01:00
$trace = debug_backtrace();
2021-05-10 12:20:52 +02:00
//nlog( debug_backtrace()[1]['function']);
2021-01-20 02:59:39 +01:00
// \Illuminate\Support\Facades\Log::channel('invoiceninja')->info(print_r($trace[1]['class'],1), []);
2020-12-24 17:01:34 +01:00
\Illuminate\Support\Facades\Log::channel('invoiceninja')->info($output, $context);
2021-01-15 00:50:27 +01:00
2020-12-24 17:01:34 +01:00
}
// if (!function_exists('ray')) {
// function ray($payload)
// {
// return true;
// }
// }