Skip to content

Commit 03c15bc

Browse files
committed
Print analysis length with 2 decimals
1 parent a2a2e06 commit 03c15bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

analyzer/codechecker_analyzer/analyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ def perform_analysis(args, skip_handlers, filter_handlers,
388388
LOG.info("----=================----")
389389

390390
end_time = time.time()
391-
LOG.info("Analysis length: %s sec.", end_time - start_time)
391+
LOG.info("Analysis length: %s sec.", round(end_time - start_time, 2))
392392

393393
if args.analyzers:
394394
analyzer_types.print_unsupported_analyzers(errored)

0 commit comments

Comments
 (0)