aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/inc/TaskRunner.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/TaskRunner.php')
-rw-r--r--inc/TaskRunner.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/TaskRunner.php b/inc/TaskRunner.php
index 776f21da2..97481ec6b 100644
--- a/inc/TaskRunner.php
+++ b/inc/TaskRunner.php
@@ -3,6 +3,7 @@
namespace dokuwiki;
use dokuwiki\Extension\Event;
+use dokuwiki\Logger;
use dokuwiki\Search\Indexer;
use dokuwiki\Sitemap\Mapper;
use dokuwiki\Subscriptions\BulkSubscriptionSender;
@@ -201,7 +202,7 @@ class TaskRunner
} catch (Search\Exception\SearchException $e) {
$msg = get_class($e) .' : '. $e->getMessage();
echo $msg;
- dbglog($msg);
+ Logger::debug($msg);
return false;
}
}