Blame view

vendor/alibabacloud/client/src/Traits/LogTrait.php 1.12 KB
f0d6cde5   xu   vendor
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php

namespace AlibabaCloud\Client\Traits;

use Exception;
use Psr\Log\LoggerInterface;

/**
 * Trait LogTrait
 *
 * @package AlibabaCloud\Client\Traits
 */
trait LogTrait
{
    /**
     * @var LoggerInterface
     */
    private static $logger;

    /**
     * @var string
     */
    private static $logFormat;

    /**
0c34aba8   xu   更新阿里云短信接口
26
27
28
29
30
31
32
33
     * @return LoggerInterface
     */
    public static function getLogger()
    {
        return self::$logger;
    }

    /**
f0d6cde5   xu   vendor
34
35
36
37
38
39
40
41
42
43
     * @param LoggerInterface $logger
     *
     * @throws Exception
     */
    public static function setLogger(LoggerInterface $logger)
    {
        self::$logger = $logger;
    }

    /**
0c34aba8   xu   更新阿里云短信接口
44
     * @return string
f0d6cde5   xu   vendor
45
     */
0c34aba8   xu   更新阿里云短信接口
46
    public static function getLogFormat()
f0d6cde5   xu   vendor
47
    {
0c34aba8   xu   更新阿里云短信接口
48
49
        return self::$logFormat
            ?: '"{method} {uri} HTTP/{version}" {code} {cost} {hostname} {pid}';
f0d6cde5   xu   vendor
50
51
52
53
54
55
56
57
58
59
60
61
62
63
    }

    /**
     * Apache Common Log Format.
     *
     * @param string $formatter
     *
     * @link http://httpd.apache.org/docs/2.4/logs.html#common
     * @see  \GuzzleHttp\MessageFormatter
     */
    public static function setLogFormat($formatter)
    {
        self::$logFormat = $formatter;
    }
f0d6cde5   xu   vendor
64
}