fix(db): Unify long transaction log/exception message

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
pull/43542/head
Christoph Wurst 4 months ago
parent 9a94df01d6
commit aef28e191a
No known key found for this signature in database
GPG Key ID: CC42AC2A7F0E56D8

@ -671,7 +671,7 @@ class Connection extends PrimaryReadReplicaConnection {
$timeTook = microtime(true) - $this->transactionActiveSince;
$this->transactionActiveSince = null;
if ($timeTook > 1) {
$this->logger->warning('Transaction took longer than 1s: ' . $timeTook, ['exception' => new \Exception('Long running transaction')]);
$this->logger->warning('Transaction took ' . $timeTook . 's', ['exception' => new \Exception('Transaction took ' . $timeTook . 's')]);
}
}
return $result;

Loading…
Cancel
Save