removed wrong log-output
This commit is contained in:
parent
a3b9a8fe61
commit
3d07774509
|
@ -149,8 +149,7 @@ class Profiler implements ContainerInterface
|
||||||
$this->logger->info(
|
$this->logger->info(
|
||||||
$message,
|
$message,
|
||||||
[
|
[
|
||||||
'module' => 'api',
|
'action' => 'profiling',
|
||||||
'action' => 'call',
|
|
||||||
'database_read' => round($this->get('database') - $this->get('database_write'), 3),
|
'database_read' => round($this->get('database') - $this->get('database_write'), 3),
|
||||||
'database_write' => round($this->get('database_write'), 3),
|
'database_write' => round($this->get('database_write'), 3),
|
||||||
'cache_read' => round($this->get('cache'), 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']);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue