PHP code example of ziganshinalexey / yii2-monolog
1. Go to this page and download the library: Download ziganshinalexey/yii2-monolog 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/ */
namespace app\controllers;
use Yii;
use \yii\web\Controller;
class ExampleController extends Controller
{
/**
* This action register "Hello world" in channel
* "main"(default when no value is setted on "getLogger" method).
*/
public function actionFirstExample()
{
$monologComponent = Yii::$app->monolog;
$logger = $monologComponent->getLogger();
$logger->log('info', 'Hello world');
}
/**
* This action register "Hello world" in channel "channel1".
*/
public function actionSecondExample()
{
$monologComponent = Yii::$app->monolog;
$logger = $monologComponent->getLogger("channel1");
$logger->log('info', 'Hello world');
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.