summaryrefslogtreecommitdiff
path: root/classes/rssutils.php
diff options
context:
space:
mode:
authorJustAMacUser <[email protected]>2018-12-12 21:30:16 -0500
committerJustAMacUser <[email protected]>2018-12-12 21:30:16 -0500
commit4b2f3039d2f755b951343fc2c2157c68516c8888 (patch)
treef1b68179fb82d1e954d3159b6b2e209b944314c4 /classes/rssutils.php
parentd53cdaf815c86bf66a5577f575f76831679ed4f2 (diff)
Properly report filter plugin time (re-fixes PR 98).
Diffstat (limited to 'classes/rssutils.php')
-rwxr-xr-xclasses/rssutils.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/rssutils.php b/classes/rssutils.php
index aa051418b..750222c80 100755
--- a/classes/rssutils.php
+++ b/classes/rssutils.php
@@ -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);
}