PHP code example of hyancat / light-log

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

    

hyancat / light-log example snippets


// Namespace
use HyanCat\LightLog\Adapters\FileHandler as LogFileHandler;
use HyanCat\LightLog\LightLog as LLog;

// Instance
$llog = new LLog(new LogFileHandler('logs/test.log'));
$llog->app('your_app_name'); // optional

// Write log
$llog->info("it's ok!");

// Or dump an array
$anArray = ['a' => 'b', 'c' => 'd'];
$llog->debug("dump array value", $anArray);

// Or notice, warning, error...