MemoryManager: parameterize an abstract \Logger to remove dependency on MainLogger

This commit is contained in:
Dylan K. Taylor
2018-06-04 13:30:48 +01:00
parent 1d71f0cf43
commit 35eaf38ca1
2 changed files with 14 additions and 13 deletions

View File

@ -54,7 +54,8 @@ class DumpWorkerMemoryTask extends AsyncTask{
["worker" => $this->worker, "store" => $store],
$this->outputFolder . DIRECTORY_SEPARATOR . "AsyncWorker#" . $this->worker->getAsyncWorkerId(),
$this->maxNesting,
$this->maxStringSize
$this->maxStringSize,
$this->worker->getLogger()
);
}
}