MagpieRSS::error( $errormsg, $lvl = E_USER_WARNING )
Contents
Source
File: wp-includes/rss.php
.
View all references
function error( $errormsg, $lvl = E_USER_WARNING ) {
if ( MAGPIE_DEBUG ) {
trigger_error( $errormsg, $lvl);
} else {
error_log( $errormsg, 0);
}
}