| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- /*
- * This file is part of the overtrue/wechat.
- *
- * (c) overtrue <i@overtrue.me>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace ByteDance\Kernel\Providers;
- use ByteDance\Kernel\Log\LogManager;
- use Pimple\Container;
- use Pimple\ServiceProviderInterface;
- /**
- * Class LoggingServiceProvider.
- *
- * @author overtrue <i@overtrue.me>
- */
- 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',
- ],
- ],
- ],
- ];
- }
- return [
- 'log' => [
- 'default' => 'single',
- 'channels' => [
- 'single' => [
- 'driver' => 'single',
- 'path' => $app['config']->get('log.file') ?: \sys_get_temp_dir().'/logs/easywechat.log',
- 'level' => $app['config']->get('log.level', 'debug'),
- ],
- ],
- ],
- ];
- }
- }
|