All Projects → pahanini → yii2-consolelog

pahanini / yii2-consolelog

Licence: other
Console log for yii2

Programming Languages

PHP
23972 projects - #3 most used programming language

Console logger

Dumps output to console, for console application debugging

Latest Stable Version Total Downloads Latest Unstable Version License

Installation

Add

"pahanini/yii2-consolelog": "*"

to the require section of your composer.json file.

Usage

return [
	'id' => 'app-console',
	'bootstrap' => ['log'],
	'components' => [
		'log' => [
			'targets' => [
				[
					'class' => 'pahanini\log\ConsoleTarget',
					'levels' => ['error', 'warning', 'trace'],
				]
			],
		],
	],
	'params' => $params,
];

You also can customize color scheme using color property.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].