Skip to content

Commit

Permalink
Logging formating tuning
Browse files Browse the repository at this point in the history
  • Loading branch information
zozlak committed Mar 24, 2023
1 parent 6f71f65 commit 780db54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/acdhOeaw/arche/doorkeeper/Doorkeeper.php
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ static public function checkIsNewVersionOf(PDO $pdo, int $txId,
$query->execute($param);
$conflicts = $query->fetchColumn();
$t = microtime(true) - $t;
RC::$log->debug("\tcheckIsNewVersionOf performed in $t s");
RC::$log->debug("\t\tcheckIsNewVersionOf performed in $t s");
if ($conflicts !== null) {
throw new DoorkeeperException("More than one $nvProp pointing to some resources: $conflicts");
}
Expand Down Expand Up @@ -909,7 +909,7 @@ static private function checkAutoCreatedResources(PDO $pdo, int $txId,
$query->execute($param);
$invalidRes = $query->fetchColumn();
$t = microtime(true) - $t;
RC::$log->debug("\tcheckAutoCreatedResources performed in $t s");
RC::$log->debug("\t\tcheckAutoCreatedResources performed in $t s");
if (!empty($invalidRes)) {
throw new DoorkeeperException("Transaction created resources without any metadata: $invalidRes");
}
Expand Down

0 comments on commit 780db54

Please sign in to comment.