1. Go to this page and download the library: Download leinonen/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/ */
$myChannelLogger = Yii::$app->monolog->getLogger('myChannel');
$myChannelLogger->critical('help me!');
$mainChannelLogger = Yii::$app->monolog->getLogger();
$mainChannelLogger->notice('This was a log message through the main channel');
class SuperController
{
private $logger;
public function __construct($id, $module, LoggerInterface $logger, $config = [])
{
$this->logger = $logger;
parent::__construct($id, $module, $config);
}
public function actionExample()
{
$this->logger->notice('Action Example was called');
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.