* @since 0.2.0
         * @return  string the url of false if no log file was created
         */
        public static function log_url()
        {
            if (self::log() !== false) {
                return self::$log->file_url();
            }
            return false;
        }
        /**
         * Get log directory
         * @since 0.2.0
         * @return string the path
         */
        public static function log_dir()
        {
            return self::$log->dir_path();
        }
        /**
         * Bypass limit server if possible
         * @since 0.2.0
         */
        public static function bypass_server_limit()
        {
            @ini_set('memory_limit', '1024M');
            @ini_set('max_execution_time', '0');
        }
    }
    MUCD_Duplicate::init();
}