Skip to content

Commit

Permalink
Fix logging format
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewkerr9000 committed Aug 4, 2018
1 parent d28dd5a commit 84dc81d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void start()
vmPauseMonitor = new VmPauseMonitor(
config.get( GraphDatabaseSettings.vm_pause_monitor_measurement_duration ),
config.get( GraphDatabaseSettings.vm_pause_monitor_stall_alert_threshold ),
log, jobScheduler, vmPauseInfo -> log.debug( "Detected VM stop-the-world pause: {}", vmPauseInfo )
log, jobScheduler, vmPauseInfo -> log.debug( "Detected VM stop-the-world pause: %s", vmPauseInfo )
);
vmPauseMonitor.start();
}
Expand Down

0 comments on commit 84dc81d

Please sign in to comment.