PHP code example of xp-framework / logging
1. Go to this page and download the library: Download xp-framework/logging 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/ */
xp-framework / logging example snippets
use util\log\Logging;
use lang\Throwable;
use peer\ConnectException;
$logger= Logging::named('service')->toConsole();
$logger->info('Starting application');
try {
$service->operation();
} catch (ConnectException $e) {
$logger->warn('Service not available', $e);
} catch (Throwable $t) {
$logger->error('Error during service invocation', $t);
}