Skip to content

Commit

Permalink
Merge pull request #45506 from nextcloud/jtr/fix-db-log-long-transact…
Browse files Browse the repository at this point in the history
…ions-debug

fix(db): Log long transaction times at debug level
  • Loading branch information
ChristophWurst authored May 27, 2024
2 parents e3b6dca + 48b47f7 commit f781a1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/private/DB/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ public function commit() {
$timeTook = microtime(true) - $this->transactionActiveSince;
$this->transactionActiveSince = null;
if ($timeTook > 1) {
$this->logger->warning('Transaction took ' . $timeTook . 's', ['exception' => new \Exception('Transaction took ' . $timeTook . 's')]);
$this->logger->debug('Transaction took ' . $timeTook . 's', ['exception' => new \Exception('Transaction took ' . $timeTook . 's')]);
}
}
return $result;
Expand All @@ -692,7 +692,7 @@ public function rollBack() {
$timeTook = microtime(true) - $this->transactionActiveSince;
$this->transactionActiveSince = null;
if ($timeTook > 1) {
$this->logger->warning('Transaction rollback took longer than 1s: ' . $timeTook, ['exception' => new \Exception('Long running transaction rollback')]);
$this->logger->debug('Transaction rollback took longer than 1s: ' . $timeTook, ['exception' => new \Exception('Long running transaction rollback')]);
}
}
return $result;
Expand Down

0 comments on commit f781a1a

Please sign in to comment.