PHP code example of holabs / logger

1. Go to this page and download the library: Download holabs/logger 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/ */

    

holabs / logger example snippets




namespace App\Presenters;

use Holabs\Logger\TLogger;
use Nette\Application\UI\Presenter;


abstract class BasePresenter extends Presenter {

	// Inject property $logger and create LOG method
	use TLogger;

	public function startup() {
		parent::startup();

		$this->log('test', ['testing']);
	}

}