summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-11-30 09:19:00 +0300
committerAndrew Dolgov <[email protected]>2018-11-30 09:19:00 +0300
commit3ad9944d5e9fadc6cfcdc1b0c8ed3fa5fbda6a69 (patch)
tree9bcf1b997e36b8cd1d6e6509aa12a13f51f773e6 /classes
parentdbb4cdbe3674f692f5f593cc46e26b73df078acc (diff)
fix missing sprintf() argument
Diffstat (limited to 'classes')
-rwxr-xr-xclasses/rssutils.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/rssutils.php b/classes/rssutils.php
index 2dfcbb6d9..56108bd1e 100755
--- a/classes/rssutils.php
+++ b/classes/rssutils.php
@@ -744,7 +744,7 @@ class RSSUtils {
$start = microtime(true);
$article = $plugin->hook_article_filter($article);
- Debug::log(sprintf("=== %.4f (sec)"), Debug::$LOG_VERBOSE);
+ Debug::log(sprintf("=== %.4f (sec)", microtime(true) - $start), Debug::$LOG_VERBOSE);
$entry_plugin_data .= mb_strtolower(get_class($plugin)) . ",";
}