1. Go to this page and download the library: Download crisnao2/monolog-extensions library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
crisnao2 / monolog-extensions example snippets
showLineNumbers
use Monolog\Logger;
use MonologExtensions\Processor\BacktraceProcessor;
$monolog = new Logger('backtrace');
$monolog->pushProcessor(new BacktraceProcessor(3));
$monolog->info('i am an info');
$monolog->warning('i am a warning..');
$monolog->error('i am an error ');
$monolog->notice('i am a notice');
$monolog->emergency('i am an emergency');
[2024-01-26T19:47:57.531159-03:00] backtrace.log.INFO: i am an info [] {"backtrace":[{"function":"error","file":"/home/www-data/info.php","line":10},{"function":"index","file":"file not defined","line":"line not defined"},{"function":"call_user_func_array","file":"vendor/php-di/invoker/src/Invoker.php","line":74},{"function":"call","file":"vendor/php-di/slim-bridge/src/ControllerInvoker.php","line":47}]}
[2024-01-26T19:47:57.531159-03:00] backtrace.log.WARNING: i am an info [] {"backtrace":[{"function":"error","file":"/home/www-data/info.php","line":11},{"function":"index","file":"file not defined","line":"line not defined"},{"function":"call_user_func_array","file":"vendor/php-di/invoker/src/Invoker.php","line":74},{"function":"call","file":"vendor/php-di/slim-bridge/src/ControllerInvoker.php","line":47}]}
[2024-01-26T19:47:57.531159-03:00] backtrace.log.ERROR: i am an info [] {"backtrace":[{"function":"error","file":"/home/www-data/info.php","line":12},{"function":"index","file":"file not defined","line":"line not defined"},{"function":"call_user_func_array","file":"vendor/php-di/invoker/src/Invoker.php","line":74},{"function":"call","file":"vendor/php-di/slim-bridge/src/ControllerInvoker.php","line":47}]}
[2024-01-26T19:47:57.531159-03:00] backtrace.log.NOTICE: i am an info [] {"backtrace":[{"function":"error","file":"/home/www-data/info.php","line":13},{"function":"index","file":"file not defined","line":"line not defined"},{"function":"call_user_func_array","file":"vendor/php-di/invoker/src/Invoker.php","line":74},{"function":"call","file":"vendor/php-di/slim-bridge/src/ControllerInvoker.php","line":47}]}
[2024-01-26T19:47:57.531159-03:00] backtrace.log.EMERGENCY: i am an info [] {"backtrace":[{"function":"error","file":"/home/www-data/info.php","line":14},{"function":"index","file":"file not defined","line":"line not defined"},{"function":"call_user_func_array","file":"vendor/php-di/invoker/src/Invoker.php","line":74},{"function":"call","file":"vendor/php-di/slim-bridge/src/ControllerInvoker.php","line":47}]}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.