removed wrong log-output

This commit is contained in:
Philipp Holzer 2019-02-17 01:57:59 +01:00
parent a3b9a8fe61
commit 3d07774509
No known key found for this signature in database
GPG Key ID: 517BE60E2CE5C8A5
1 changed files with 2 additions and 3 deletions

View File

@ -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']);
}
/**