Skip to content

Commit

Permalink
Merge pull request #33429 from rolfedh/replace-quarkus-log-console-color
Browse files Browse the repository at this point in the history
Replace `quarkus.log.console.color` with `quarkus.console.color`
  • Loading branch information
geoand authored May 23, 2023
2 parents d73267b + 8ceee5f commit 851b41a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ ConsoleInstalledBuildItem setupConsole(TestConfig config,
ConsoleRuntimeConfig consoleRuntimeConfig = new ConsoleRuntimeConfig();
consoleRuntimeConfig.color = ConfigProvider.getConfig().getOptionalValue("quarkus.console.color", Boolean.class);
io.quarkus.runtime.logging.ConsoleConfig loggingConsoleConfig = new io.quarkus.runtime.logging.ConsoleConfig();
loggingConsoleConfig.color = ConfigProvider.getConfig().getOptionalValue("quarkus.log.console.color",
loggingConsoleConfig.color = ConfigProvider.getConfig().getOptionalValue("quarkus.console.color",
Boolean.class);
ConsoleHelper.installConsole(config, consoleConfig, consoleRuntimeConfig, loggingConsoleConfig,
launchModeBuildItem.isTest());
Expand Down

0 comments on commit 851b41a

Please sign in to comment.