RSSCache::debug()publicWP 1.0

Method of the class: RSSCache{}

No Hooks.

Return

null. Nothing (null).

Usage

$RSSCache = new RSSCache();
$RSSCache->debug ( $debugmsg, $lvl );
$debugmsg (required)
-
$lvl **
-
Default: E_USER_NOTICE

RSSCache::debug() code WP 6.5.2

function debug ($debugmsg, $lvl=E_USER_NOTICE) {
		if ( MAGPIE_DEBUG ) {
$this->error("MagpieRSS [debug] $debugmsg", $lvl);
		}
	}