
【主 题】:提交runing字段 【描 述】: [原因]:正则匹配 bind_route 添加runing字段 PS:对应取出bind_route的, 即分割符 [过程]: [影响]: 【结 束】
16 lines
414 B
PHP
16 lines
414 B
PHP
<?php
|
|
|
|
namespace Psr\Log;
|
|
|
|
/**
|
|
* This is a simple Logger implementation that other Loggers can inherit from.
|
|
*
|
|
* It simply delegates all log-level-specific methods to the `log` method to
|
|
* reduce boilerplate code that a simple Logger that does the same thing with
|
|
* messages regardless of the error level has to implement.
|
|
*/
|
|
abstract class AbstractLogger implements LoggerInterface
|
|
{
|
|
use LoggerTrait;
|
|
}
|