Skip to content

Commit

Permalink
Fix timer output being included at non-verbose output levels
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Nov 23, 2024
1 parent 7644abd commit 19144eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Db/Adapter/TimedOutputAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function startCommandTimer(): callable

return function () use ($started): void {
$end = microtime(true);
$this->getIo()?->out(' -> ' . sprintf('%.4fs', $end - $started));
$this->getIo()?->verbose(' -> ' . sprintf('%.4fs', $end - $started));
};
}

Expand Down

0 comments on commit 19144eb

Please sign in to comment.