Skip to content

Commit

Permalink
[BUGFIX] Show the sum of query duration when debugging queries
Browse files Browse the repository at this point in the history
  • Loading branch information
vertexvaar committed Nov 1, 2023
1 parent fd1b2d4 commit 1eeda58
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ protected function debugSqlQueries(): void
if (!empty($queries)) {
DebugUtility::debug($queries, 'Content Publisher Queries');
DebugUtility::debug($queriesByCaller, 'Queries By Caller');
DebugUtility::debug(array_sum(array_column($queries, 'executionNS')), 'Timing');
}
}
}
Expand Down

0 comments on commit 1eeda58

Please sign in to comment.