PHP code example of achertovsky / yii2-loggly

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

    

achertovsky / yii2-loggly example snippets


'log' => [
	'targets' => [
		'loggly' => [
			'class' => 'spacedealer\loggly\Target',
			'customerToken' => 'your_customer_token',
			'levels' => ['error', 'warning', 'info', 'trace'],
			'tags' => ['console', 'staging']
			'enableIp' => false,
			'enableTrail' => true,
			'enableTrace' => false,
		],
	],
],

php composer.phar