Asf_Log_AbstractLogger


Introduction

Asf_Log_AbstractLogger 日志类

在开启命名空间情况下(asf.use_namespace=1)类名为 Asf\Log\AbstractLogger

Class synopsis

<?php
abstract class Asf_Log_AbstractLogger implements Asf_Log_LoggerInterface
{
    public bool emergency(string $message, array $content = array())
    public bool alert(string $message, array $content = array())
    public bool critical(string $message, array $content = array())
    public bool error(string $message, array $content = array())
    public bool warning(string $message, array $content = array())
    public bool notice(string $message, array $content = array())
    public bool info(string $message, array $content = array())
    public bool debug(string $message, array $content = array())
    public bool log(string $level, string $message, array $content = array())
}

Link