RSSCache::error()

最后更新于:2021-11-26 04:10:47

RSSCache::error($errormsg, $lvl=E_USER_WARNING)

源文件

文件: gc-includes/rss.php

	function error ($errormsg, $lvl=E_USER_WARNING) {
		$this->ERROR = $errormsg;
		if ( MAGPIE_DEBUG ) {
			trigger_error( $errormsg, $lvl);
		}
		else {
			error_log( $errormsg, 0);
		}
	}