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

In this article

Source

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

User Contributed Notes

You must log in before being able to contribute a note or feedback.