PluginBase: fixed plugin task timings showing "Unknown" for plugin name

This commit is contained in:
Dylan K. Taylor 2018-06-21 12:05:30 +01:00
parent 4a8232d591
commit 7b7be9618c

View File

@ -67,7 +67,7 @@ abstract class PluginBase implements Plugin{
$this->file = rtrim($file, "\\/") . "/";
$this->configFile = $this->dataFolder . "config.yml";
$this->logger = new PluginLogger($this);
$this->scheduler = new TaskScheduler($this->logger);
$this->scheduler = new TaskScheduler($this->logger, $this->getFullName());
}
/**