for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EasyIM\Kernel\Providers;
use EasyIM\Kernel\Log\LogManager;
use Pimple\Container;
use Pimple\ServiceProviderInterface;
/**
* Class LoggingServiceProvider.
*/
class LogServiceProvider implements ServiceProviderInterface
{
* Registers services on the given container.
*
* This method should only be used to configure services and parameters.
* It should not get services.
* @param Container $pimple A container instance
public function register(Container $pimple)
$pimple['logger'] = $pimple['log'] = function ($app) {
$config = $this->formatLogConfig($app);
if (!empty($config)) {
$app->rebind('config', $app['config']->merge($config));
}
return new LogManager($app);
};
public function formatLogConfig($app)
if (!empty($app['config']->get('log.channels'))) {
return $app['config']->get('log');
if (empty($app['config']->get('log'))) {
return [
'log' => [
'default' => 'errorlog',
'channels' => [
'errorlog' => [
'driver' => 'errorlog',
'level' => 'debug',
],
];
'default' => 'single',
'single' => [
'driver' => 'single',
'path' => $app['config']->get('log.file') ?: \sys_get_temp_dir().'/logs/EasyIM.log',
'level' => $app['config']->get('log.level', 'debug'),