mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-10 00:54:27 +02:00
Refactor dynamic App::getProfiler() to static DI::profiler()
This commit is contained in:
parent
e2b2778e0a
commit
181529f3df
12 changed files with 22 additions and 30 deletions
|
@ -386,7 +386,7 @@ class Worker
|
|||
|
||||
// We use the callstack here to analyze the performance of executed worker entries.
|
||||
// For this reason the variables have to be initialized.
|
||||
$a->getProfiler()->reset();
|
||||
DI::profiler()->reset();
|
||||
|
||||
$a->queue = $queue;
|
||||
|
||||
|
@ -443,7 +443,7 @@ class Worker
|
|||
|
||||
Logger::info('Process done.', ['priority' => $queue["priority"], 'id' => $queue["id"], 'duration' => round($duration, 3)]);
|
||||
|
||||
$a->getProfiler()->saveLog(DI::logger(), "ID " . $queue["id"] . ": " . $funcname);
|
||||
DI::profiler()->saveLog(DI::logger(), "ID " . $queue["id"] . ": " . $funcname);
|
||||
|
||||
$cooldown = Config::get("system", "worker_cooldown", 0);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue