Skip to content

Commit

Permalink
Merge pull request #29855 from geoand/printStartupTime
Browse files Browse the repository at this point in the history
Prevent false warning message about missing 'quarkus.debug.print-startup-times'
  • Loading branch information
geoand committed Dec 14, 2022
2 parents 7c6bb9b + 8fb55fb commit b5576e1
Showing 1 changed file with 16 additions and 0 deletions.
@@ -0,0 +1,16 @@
package io.quarkus.runtime;

import io.quarkus.runtime.annotations.ConfigItem;
import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;

@ConfigRoot(name = "debug", phase = ConfigPhase.RUN_TIME)
public class DebugRuntimeConfig {

/**
* If set to {@code true}, Quarkus prints the wall-clock time each build step took to complete.
* This is useful as a first step in debugging slow startup times.
*/
@ConfigItem(defaultValue = "false")
boolean printStartupTimes;
}

0 comments on commit b5576e1

Please sign in to comment.