From: Philipp Holzer Date: Sun, 17 Feb 2019 00:57:59 +0000 (+0100) Subject: removed wrong log-output X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3d077745099c51ca7dad306925a10cb2a8ad5a8d;p=friendica.git removed wrong log-output --- diff --git a/src/Util/Profiler.php b/src/Util/Profiler.php index 5bad5eb6ae..9d04a6498a 100644 --- a/src/Util/Profiler.php +++ b/src/Util/Profiler.php @@ -149,8 +149,7 @@ class Profiler implements ContainerInterface $this->logger->info( $message, [ - 'module' => 'api', - 'action' => 'call', + 'action' => 'profiling', 'database_read' => round($this->get('database') - $this->get('database_write'), 3), 'database_write' => round($this->get('database_write'), 3), 'cache_read' => round($this->get('cache'), 3), @@ -214,7 +213,7 @@ class Profiler implements ContainerInterface } } } - $this->logger->info($message . ": " . $o); + $this->logger->info($message . ": " . $o, ['action' => 'profiling']); } /**