dropr::getLogger PHP 메소드

getLogger() 공개 정적인 메소드

Get the Logger instance
public static getLogger ( ) : dropr_Log
리턴 dropr_Log
    public static function getLogger()
    {
        if (!self::$logger) {
            // get the default error_log logger
            self::$logger = new dropr_Log_Errorlog();
        }
        return self::$logger;
    }