dropr::getLogger PHP Method

getLogger() public static method

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