Enum Class StartupSummaryLevel
- All Implemented Interfaces:
Serializable, Comparable<StartupSummaryLevel>, Constable
Controls how much information
CamelContext logs in its startup (and shutdown) summary.
Set via CamelContext.setStartupSummaryLevel(StartupSummaryLevel) or the property
camel.main.startup-summary-level in application configuration. The default is Default, which logs a
compact route overview. Choose Verbose for full endpoint URI details, Brief or Oneline
when conciseness is preferred, or Off to suppress the summary entirely.- Since:
- 3.8
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic StartupSummaryLevelReturns the enum constant of this class with the specified name.static StartupSummaryLevel[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Verbose
Most detailed startup summary with all routes and their endpoints. -
Default
Default startup summary with route overview. -
Brief
Brief startup summary with route count. -
Oneline
Single-line startup summary. -
Off
No startup summary logged.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-