PHP code example of thruster / logger-wrap
1. Go to this page and download the library: Download thruster/logger-wrap 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/ */
thruster / logger-wrap example snippets
$logger = new Logger();
$wrappedLogger = new LoggerWrap($logger);
$wrappedLogger->info('Foo Bar'); // Will call $logger->info('Foo Bar');
$wrappedLogger = new LoggerWrap();
$wrappedLogger->info('Foo Bar'); // Will not call anything