Properly report filter plugin time (re-fixes PR 98).

This commit is contained in:
JustAMacUser 2018-12-12 21:30:16 -05:00
parent d53cdaf815
commit 4b2f3039d2
1 changed files with 1 additions and 1 deletions

View File

@ -830,7 +830,7 @@ class RSSUtils {
$start = microtime(true);
$article = $plugin->hook_article_filter_action($article, $pfaction);
Debug::log(sprintf("=== %.4f (sec)", Debug::$LOG_VERBOSE));
Debug::log(sprintf("=== %.4f (sec)", microtime(true) - $start), Debug::$LOG_VERBOSE);
} else {
Debug::log("??? $pfclass: plugin object not found.", Debug::$LOG_VERBOSE);
}