RSSCache::debug() WordPress Method
The RSSCache::debug() method is used to display information about the caching process for RSS feeds in WordPress. This can be useful for troubleshooting purposes.
RSSCache::debug( $debugmsg, $lvl = E_USER_NOTICE ) #
Source
File: wp-includes/rss.php
function debug ($debugmsg, $lvl=E_USER_NOTICE) { if ( MAGPIE_DEBUG ) { $this->error("MagpieRSS [debug] $debugmsg", $lvl); } }
Expand full source codeCollapse full source codeView on TracView on GitHub