All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.runtime.DebugRuntimeConfig Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.runtime;

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

/**
 * Debugging.
 */
@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;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy