MagpieRSS::error()

最后更新于:2021-11-25 20:25:27

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

源文件

文件: gc-includes/rss.php

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