From 3d077745099c51ca7dad306925a10cb2a8ad5a8d Mon Sep 17 00:00:00 2001 From: Philipp Holzer Date: Sun, 17 Feb 2019 01:57:59 +0100 Subject: [PATCH] removed wrong log-output --- src/Util/Profiler.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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']); } /**