Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a way to log all/some configuration at startup #8218

Closed
ia3andy opened this issue Mar 27, 2020 · 29 comments · Fixed by #35247
Closed

Add a way to log all/some configuration at startup #8218

ia3andy opened this issue Mar 27, 2020 · 29 comments · Fixed by #35247
Labels
area/config kind/enhancement New feature or request
Milestone

Comments

@ia3andy
Copy link
Contributor

ia3andy commented Mar 27, 2020

Description
It would be great to have a way to log all/some configuration at startup.

In my mind:

  • I would see a global configuration flag like:
    quarkus.log-config-at-startup=true
  • I would see some way to enable it in @ConfigProperties(..., enableLog="true"), @ConfigProperty(..., enableLog="true")

As discussed with @dmlloyd and @geoand there already are some efforts in that direction:

We also discussed some problems to be figured out:

@ia3andy ia3andy added the kind/enhancement New feature or request label Mar 27, 2020
@gastaldi
Copy link
Contributor

There is a ticket asking to support sensitive data in MP Config: eclipse/microprofile-config#451

@radcortez
Copy link
Member

Smallrye Config 1.8 already supports this. Once we merge #9184 we can add the feature.

@geoand
Copy link
Contributor

geoand commented Jul 27, 2021

I think we should close this as the we now have support for this in the DevUI.

@famod
Copy link
Member

famod commented Jul 27, 2021

@geoand coincidentally, yesterday I was in the need to see the effective config in non dev mode. Having some support for this would come in handy.
Dev mode is not prod mode after all 😉

@gastaldi
Copy link
Contributor

We'd need to be careful to not introduce a security issue if we're going to support that, for example, you'd need to be authenticated if your application is public.

@famod
Copy link
Member

famod commented Jul 27, 2021

Valid point! But I do think that this would not be something you enable all the time.
So to some extend, the responsibility could be offloaded to the user.

Anyway, I just wanted to point out that this enhancement request still relevant, IMO.

@gastaldi gastaldi reopened this Jul 27, 2021
@gastaldi
Copy link
Contributor

For the record, I was referring to be authenticated if we're introducing a web page showing configuration options. Showing the config in the logs during the startup (except with sensitive data) may be a nice thing to have though

@radcortez
Copy link
Member

BTW, this is already supported:
https://smallrye.io/docs/smallrye-config/interceptors/interceptors.html#logging-interceptor

The interceptor is not registered by default, but if you add it you will get the logging.

@gastaldi
Copy link
Contributor

@radcortez that's awesome! Is this mentioned in the Quarkus docs or in a guide somewhere we can point users to?

@radcortez
Copy link
Member

No, but I can add it.

@radcortez
Copy link
Member

@famod do you want to try the interceptor approach? Just register the io.smallrye.config.LoggingConfigSourceInterceptor in a META-INF/services/io.smallrye.config.ConfigSourceInterceptor file.

If this works for you, I can just add a configuration to auto-register the interceptor.

@famod
Copy link
Member

famod commented Jul 29, 2021

@radcortez I'll try to find some time on sunday or so.

@famod
Copy link
Member

famod commented Aug 3, 2021

@radcortez well, the interceptor seems to kick in but I don't see anything on the console.
Console level is ALL and I've set io.smallrye.config.ConfigLogging to DEBUG. Am I missing something?

@famod
Copy link
Member

famod commented Aug 3, 2021

Could it be that I cannot set the level of io.smallrye.config.ConfigLogging via Quarkus config because...well...the interceptor runs "too early"?

@radcortez
Copy link
Member

The logging name is io.smallrye.config. Try with quarkus.log.category."io.smallrye.config".level=DEBUG plus the interceptor registration. This worked for me.

@famod
Copy link
Member

famod commented Aug 16, 2021

Ok thanks, I'm now seeing (in getting-started quickstart):

2021-08-16 23:59:41,673 DEBUG [io.sma.config] (main) SRCFG01002: The config mp.config.profile was not found
2021-08-16 23:59:41,673 DEBUG [io.sma.config] (main) SRCFG01001: The config smallrye.config.profile was loaded from DefaultValuesConfigSource with the value prod
2021-08-16 23:59:41,673 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.config.profile.parent was not found
2021-08-16 23:59:41,673 DEBUG [io.sma.config] (main) SRCFG01002: The config smallrye.config.profile.parent was not found
2021-08-16 23:59:41,674 DEBUG [io.sma.config] (main) SRCFG01002: The config smallrye.config.profile.parent was not found
2021-08-16 23:59:41,680 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.mp.config.property.expressions.enabled was not found
2021-08-16 23:59:41,680 DEBUG [io.sma.config] (main) SRCFG01002: The config mp.config.property.expressions.enabled was not found
2021-08-16 23:59:41,682 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.smallrye.config.locations was not found
2021-08-16 23:59:41,682 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.config.locations was not found
2021-08-16 23:59:41,682 DEBUG [io.sma.config] (main) SRCFG01002: The config smallrye.config.locations was not found
2021-08-16 23:59:41,682 DEBUG [io.sma.config] (main) SRCFG01002: The config smallrye.config.locations was not found
2021-08-16 23:59:41,682 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.smallrye.config.locations was not found
2021-08-16 23:59:41,682 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.config.locations was not found
2021-08-16 23:59:41,682 DEBUG [io.sma.config] (main) SRCFG01002: The config smallrye.config.locations was not found
2021-08-16 23:59:41,682 DEBUG [io.sma.config] (main) SRCFG01002: The config smallrye.config.locations was not found
2021-08-16 23:59:41,697 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.security.jaxrs.deny-unannotated-endpoints was not found
2021-08-16 23:59:41,697 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.security.jaxrs.deny-unannotated-endpoints was loaded from default values with the value false
2021-08-16 23:59:41,701 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.root-path was not found
2021-08-16 23:59:41,701 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.root-path was loaded from default values with the value /
2021-08-16 23:59:41,701 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.basic was not found
2021-08-16 23:59:41,701 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.basic was loaded from default values with the value false
2021-08-16 23:59:41,701 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.enabled was not found
2021-08-16 23:59:41,701 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.enabled was loaded from default values with the value false
2021-08-16 23:59:41,701 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.login-page was not found
2021-08-16 23:59:41,701 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.login-page was loaded from default values with the value /login.html
2021-08-16 23:59:41,701 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.post-location was not found
2021-08-16 23:59:41,701 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.post-location was loaded from default values with the value /j_security_check
2021-08-16 23:59:41,701 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.username-parameter was not found
2021-08-16 23:59:41,701 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.username-parameter was loaded from default values with the value j_username
2021-08-16 23:59:41,702 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.password-parameter was not found
2021-08-16 23:59:41,702 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.password-parameter was loaded from default values with the value j_password
2021-08-16 23:59:41,702 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.error-page was not found
2021-08-16 23:59:41,702 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.error-page was loaded from default values with the value /error.html
2021-08-16 23:59:41,702 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.landing-page was not found
2021-08-16 23:59:41,702 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.landing-page was loaded from default values with the value /index.html
2021-08-16 23:59:41,702 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.redirect-after-login was not found
2021-08-16 23:59:41,702 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.redirect-after-login was loaded from default values with the value true
2021-08-16 23:59:41,702 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.location-cookie was not found
2021-08-16 23:59:41,702 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.location-cookie was loaded from default values with the value quarkus-redirect-location
2021-08-16 23:59:41,702 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.timeout was not found
2021-08-16 23:59:41,702 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.timeout was loaded from default values with the value PT30M
2021-08-16 23:59:41,703 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.new-cookie-interval was not found
2021-08-16 23:59:41,703 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.new-cookie-interval was loaded from default values with the value PT1M
2021-08-16 23:59:41,703 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.cookie-name was not found
2021-08-16 23:59:41,703 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.cookie-name was loaded from default values with the value quarkus-credential
2021-08-16 23:59:41,704 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.realm was not found
2021-08-16 23:59:41,704 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.realm was loaded from default values with the value Quarkus
2021-08-16 23:59:41,704 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.proactive was not found
2021-08-16 23:59:41,704 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.proactive was loaded from default values with the value true
2021-08-16 23:59:41,704 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.client-auth was not found
2021-08-16 23:59:41,704 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.ssl.client-auth was loaded from default values with the value NONE
2021-08-16 23:59:41,704 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.virtual was not found
2021-08-16 23:59:41,704 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.virtual was loaded from default values with the value false
2021-08-16 23:59:41,704 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.non-application-root-path was not found
2021-08-16 23:59:41,705 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.non-application-root-path was loaded from default values with the value q
2021-08-16 23:59:41,705 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.test-timeout was not found
2021-08-16 23:59:41,705 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.test-timeout was loaded from default values with the value 30s
2021-08-16 23:59:41,705 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.application.name was not found
2021-08-16 23:59:41,705 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.application.name was loaded from PropertiesConfigSource[source=Build time config] with the value getting-started
2021-08-16 23:59:41,705 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.application.version was not found
2021-08-16 23:59:41,705 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.application.version was loaded from PropertiesConfigSource[source=Build time config] with the value 1.0.0-SNAPSHOT
2021-08-16 23:59:41,705 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.config.locations was not found
2021-08-16 23:59:41,705 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.config.locations was not found
2021-08-16 23:59:41,705 DEBUG [io.sma.config] (main) SRCFG01002: The config smallrye.config.locations was not found
2021-08-16 23:59:41,705 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.config.profile.parent was not found
2021-08-16 23:59:41,705 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.config.profile.parent was not found
2021-08-16 23:59:41,705 DEBUG [io.sma.config] (main) SRCFG01002: The config smallrye.config.profile.parent was not found
2021-08-16 23:59:41,705 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.uuid was not found
2021-08-16 23:59:41,706 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.uuid was loaded from DefaultValuesConfigSource with the value 8ccf44b6-c4dd-47ef-8ad3-9bf2037edf83
2021-08-16 23:59:41,706 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.live-reload.instrumentation was not found
2021-08-16 23:59:41,706 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.live-reload.instrumentation was loaded from default values with the value false
2021-08-16 23:59:41,706 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.live-reload.watched-resources was not found
2021-08-16 23:59:41,706 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.live-reload.watched-resources was not found
2021-08-16 23:59:41,706 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.live-reload.password was not found
2021-08-16 23:59:41,706 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.live-reload.password was not found
2021-08-16 23:59:41,706 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.live-reload.url was not found
2021-08-16 23:59:41,706 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.live-reload.url was not found
2021-08-16 23:59:41,706 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.live-reload.connect-timeout was not found
2021-08-16 23:59:41,706 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.live-reload.connect-timeout was loaded from default values with the value 30s
2021-08-16 23:59:41,706 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.live-reload.retry-interval was not found
2021-08-16 23:59:41,706 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.live-reload.retry-interval was loaded from default values with the value 2s
2021-08-16 23:59:41,706 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.live-reload.retry-max-attempts was not found
2021-08-16 23:59:41,706 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.live-reload.retry-max-attempts was loaded from default values with the value 10
2021-08-16 23:59:41,707 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.locales was not found
2021-08-16 23:59:41,707 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.locales was loaded from default values with the value ${user.language:en}-${user.country:}
2021-08-16 23:59:41,707 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.user.language was not found
2021-08-16 23:59:41,707 DEBUG [io.sma.config] (main) SRCFG01001: The config user.language was loaded from SysPropConfigSource with the value en
2021-08-16 23:59:41,707 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.user.country was not found
2021-08-16 23:59:41,707 DEBUG [io.sma.config] (main) SRCFG01002: The config user.country was not found
2021-08-16 23:59:41,708 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.default-locale was not found
2021-08-16 23:59:41,708 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.default-locale was loaded from default values with the value ${user.language:en}-${user.country:}
2021-08-16 23:59:41,708 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.user.language was not found
2021-08-16 23:59:41,708 DEBUG [io.sma.config] (main) SRCFG01001: The config user.language was loaded from SysPropConfigSource with the value en
2021-08-16 23:59:41,708 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.user.country was not found
2021-08-16 23:59:41,708 DEBUG [io.sma.config] (main) SRCFG01002: The config user.country was not found
2021-08-16 23:59:41,708 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.tls.trust-all was not found
2021-08-16 23:59:41,708 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.tls.trust-all was loaded from default values with the value false
2021-08-16 23:59:41,708 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.metrics.enabled was not found
2021-08-16 23:59:41,708 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.metrics.enabled was loaded from default values with the value false
2021-08-16 23:59:41,708 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.min-level was not found
2021-08-16 23:59:41,708 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.min-level was loaded from default values with the value DEBUG
2021-08-16 23:59:41,727 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.mp.context.ManagedExecutor.maxAsync was not found
2021-08-16 23:59:41,727 DEBUG [io.sma.config] (main) SRCFG01002: The config mp.context.ManagedExecutor.maxAsync was not found
2021-08-16 23:59:41,728 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.mp.context.ManagedExecutor.maxQueued was not found
2021-08-16 23:59:41,728 DEBUG [io.sma.config] (main) SRCFG01002: The config mp.context.ManagedExecutor.maxQueued was not found
2021-08-16 23:59:41,729 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.mp.context.ManagedExecutor.propagated was not found
2021-08-16 23:59:41,729 DEBUG [io.sma.config] (main) SRCFG01002: The config mp.context.ManagedExecutor.propagated was not found
2021-08-16 23:59:41,735 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.mp.context.ManagedExecutor.cleared was not found
2021-08-16 23:59:41,735 DEBUG [io.sma.config] (main) SRCFG01002: The config mp.context.ManagedExecutor.cleared was not found
2021-08-16 23:59:41,735 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.mp.context.ThreadContext.cleared was not found
2021-08-16 23:59:41,735 DEBUG [io.sma.config] (main) SRCFG01002: The config mp.context.ThreadContext.cleared was not found
2021-08-16 23:59:41,735 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.mp.context.ThreadContext.propagated was not found
2021-08-16 23:59:41,735 DEBUG [io.sma.config] (main) SRCFG01002: The config mp.context.ThreadContext.propagated was not found
2021-08-16 23:59:41,736 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.mp.context.ThreadContext.unchanged was not found
2021-08-16 23:59:41,736 DEBUG [io.sma.config] (main) SRCFG01002: The config mp.context.ThreadContext.unchanged was not found
2021-08-16 23:59:41,804 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.resteasy.server.tracing.type was not found
2021-08-16 23:59:41,805 DEBUG [io.sma.config] (main) SRCFG01002: The config resteasy.server.tracing.type was not found
2021-08-16 23:59:41,805 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.resteasy.server.tracing.threshold was not found
2021-08-16 23:59:41,805 DEBUG [io.sma.config] (main) SRCFG01002: The config resteasy.server.tracing.threshold was not found
2021-08-16 23:59:41,805 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.resteasy.server.tracing.type was not found
2021-08-16 23:59:41,805 DEBUG [io.sma.config] (main) SRCFG01002: The config resteasy.server.tracing.type was not found
2021-08-16 23:59:41,805 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.resteasy.server.tracing.threshold was not found
2021-08-16 23:59:41,805 DEBUG [io.sma.config] (main) SRCFG01002: The config resteasy.server.tracing.threshold was not found
2021-08-16 23:59:41,864 DEBUG [io.sma.config] (main) SRCFG01002: The config mp.config.profile was not found
2021-08-16 23:59:41,864 DEBUG [io.sma.config] (main) SRCFG01001: The config smallrye.config.profile was loaded from DefaultValuesConfigSource with the value prod
2021-08-16 23:59:41,864 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.config.profile.parent was not found
2021-08-16 23:59:41,864 DEBUG [io.sma.config] (main) SRCFG01002: The config smallrye.config.profile.parent was not found
2021-08-16 23:59:41,864 DEBUG [io.sma.config] (main) SRCFG01002: The config smallrye.config.profile.parent was not found
2021-08-16 23:59:41,864 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.mp.config.property.expressions.enabled was not found
2021-08-16 23:59:41,864 DEBUG [io.sma.config] (main) SRCFG01002: The config mp.config.property.expressions.enabled was not found
2021-08-16 23:59:41,864 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.smallrye.config.locations was not found
2021-08-16 23:59:41,865 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.config.locations was not found
2021-08-16 23:59:41,865 DEBUG [io.sma.config] (main) SRCFG01002: The config smallrye.config.locations was not found
2021-08-16 23:59:41,865 DEBUG [io.sma.config] (main) SRCFG01002: The config smallrye.config.locations was not found
2021-08-16 23:59:41,865 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.smallrye.config.locations was not found
2021-08-16 23:59:41,865 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.config.locations was not found
2021-08-16 23:59:41,865 DEBUG [io.sma.config] (main) SRCFG01002: The config smallrye.config.locations was not found
2021-08-16 23:59:41,865 DEBUG [io.sma.config] (main) SRCFG01002: The config smallrye.config.locations was not found
2021-08-16 23:59:41,867 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.cors was not found
2021-08-16 23:59:41,867 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.cors was loaded from default values with the value false
2021-08-16 23:59:41,867 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.port was not found
2021-08-16 23:59:41,867 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.port was loaded from PropertiesConfigSource[source=jar:file:///home/moldowan/proj/quarkus-quickstarts/getting-started/target/quarkus-app/app/getting-started-1.0.0-SNAPSHOT.jar!/application.properties] with the value 12345
2021-08-16 23:59:41,867 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.test-port was not found
2021-08-16 23:59:41,867 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.test-port was loaded from default values with the value 8081
2021-08-16 23:59:41,867 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.host was not found
2021-08-16 23:59:41,867 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.host was loaded from Quarkus HTTP Host Default Value with the value 0.0.0.0
2021-08-16 23:59:41,867 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.host-enabled was not found
2021-08-16 23:59:41,867 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.host-enabled was loaded from default values with the value true
2021-08-16 23:59:41,867 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl-port was not found
2021-08-16 23:59:41,867 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.ssl-port was loaded from default values with the value 8443
2021-08-16 23:59:41,867 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.test-ssl-port was not found
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.test-ssl-port was loaded from default values with the value 8444
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.proxy-address-forwarding was not found
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.proxy-address-forwarding was not found
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.allow-forwarded was not found
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.allow-forwarded was not found
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.insecure-requests was not found
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.insecure-requests was loaded from default values with the value enabled
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.http2 was not found
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.http2 was loaded from default values with the value true
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.cors.origins was not found
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.cors.origins was not found
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.cors.methods was not found
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.cors.methods was not found
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.cors.headers was not found
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.cors.headers was not found
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.cors.exposed-headers was not found
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.cors.exposed-headers was not found
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.cors.access-control-max-age was not found
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.cors.access-control-max-age was not found
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.cors.access-control-allow-credentials was not found
2021-08-16 23:59:41,868 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.cors.access-control-allow-credentials was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.certificate.file was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.ssl.certificate.file was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.certificate.files was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.ssl.certificate.files was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.certificate.key-file was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.ssl.certificate.key-file was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.certificate.key-files was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.ssl.certificate.key-files was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.certificate.key-store-file was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.ssl.certificate.key-store-file was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.certificate.key-store-file-type was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.ssl.certificate.key-store-file-type was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.certificate.key-store-provider was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.ssl.certificate.key-store-provider was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.certificate.key-store-password was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.ssl.certificate.key-store-password was loaded from default values with the value password
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.certificate.key-store-key-alias was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.ssl.certificate.key-store-key-alias was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.certificate.key-store-key-password was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.ssl.certificate.key-store-key-password was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.certificate.trust-store-file was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.ssl.certificate.trust-store-file was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.certificate.trust-store-file-type was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.ssl.certificate.trust-store-file-type was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.certificate.trust-store-provider was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.ssl.certificate.trust-store-provider was not found
2021-08-16 23:59:41,869 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.certificate.trust-store-password was not found
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.ssl.certificate.trust-store-password was not found
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.certificate.trust-store-cert-alias was not found
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.ssl.certificate.trust-store-cert-alias was not found
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.cipher-suites was not found
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.ssl.cipher-suites was not found
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.protocols was not found
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.ssl.protocols was loaded from default values with the value TLSv1.3,TLSv1.2
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.sni was not found
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.ssl.sni was loaded from default values with the value false
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.io-threads was not found
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.io-threads was not found
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.limits.max-header-size was not found
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.limits.max-header-size was loaded from default values with the value 20K
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.limits.max-body-size was not found
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.limits.max-body-size was loaded from default values with the value 10240K
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.limits.max-chunk-size was not found
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.limits.max-chunk-size was loaded from default values with the value 8192
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.limits.max-initial-line-length was not found
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.limits.max-initial-line-length was loaded from default values with the value 4096
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.limits.max-form-attribute-size was not found
2021-08-16 23:59:41,870 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.limits.max-form-attribute-size was loaded from default values with the value 2048
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.limits.max-connections was not found
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.limits.max-connections was not found
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.idle-timeout was not found
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.idle-timeout was loaded from default values with the value 30M
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.read-timeout was not found
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.read-timeout was loaded from default values with the value 60s
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.body.handle-file-uploads was not found
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.body.handle-file-uploads was loaded from default values with the value true
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.body.uploads-directory was not found
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.body.uploads-directory was loaded from default values with the value ${java.io.tmpdir}/uploads
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.java.io.tmpdir was not found
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01001: The config java.io.tmpdir was loaded from SysPropConfigSource with the value /tmp
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.body.merge-form-attributes was not found
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.body.merge-form-attributes was loaded from default values with the value true
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.body.delete-uploaded-files-on-end was not found
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.body.delete-uploaded-files-on-end was loaded from default values with the value true
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.body.preallocate-body-buffer was not found
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.body.preallocate-body-buffer was loaded from default values with the value false
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.session.encryption-key was not found
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.auth.session.encryption-key was not found
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.so-reuse-port was not found
2021-08-16 23:59:41,871 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.so-reuse-port was loaded from default values with the value false
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.tcp-quick-ack was not found
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.tcp-quick-ack was loaded from default values with the value false
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.tcp-cork was not found
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.tcp-cork was loaded from default values with the value false
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.tcp-fast-open was not found
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.tcp-fast-open was loaded from default values with the value false
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.domain-socket was not found
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.domain-socket was loaded from default values with the value /var/run/io.quarkus.app.socket
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.domain-socket-enabled was not found
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.domain-socket-enabled was loaded from default values with the value false
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.record-request-start-time was not found
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.record-request-start-time was loaded from default values with the value false
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.access-log.enabled was not found
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.access-log.enabled was loaded from default values with the value false
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.access-log.exclude-pattern was not found
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.access-log.exclude-pattern was not found
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.access-log.pattern was not found
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.access-log.pattern was loaded from default values with the value common
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.access-log.log-to-file was not found
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.access-log.log-to-file was loaded from default values with the value false
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.access-log.base-file-name was not found
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.access-log.base-file-name was loaded from default values with the value quarkus
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.access-log.log-directory was not found
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.http.access-log.log-directory was not found
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.access-log.log-suffix was not found
2021-08-16 23:59:41,872 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.access-log.log-suffix was loaded from default values with the value .log
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.access-log.category was not found
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.access-log.category was loaded from default values with the value io.quarkus.http.access-log
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.access-log.rotate was not found
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.access-log.rotate was loaded from default values with the value true
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.enable-compression was not found
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.enable-compression was loaded from default values with the value false
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.proxy.proxy-address-forwarding was not found
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.proxy.proxy-address-forwarding was loaded from default values with the value false
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.proxy.allow-forwarded was not found
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.proxy.allow-forwarded was loaded from default values with the value false
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.proxy.enable-forwarded-host was not found
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.proxy.enable-forwarded-host was loaded from default values with the value false
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.proxy.forwarded-host-header was not found
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.proxy.forwarded-host-header was loaded from default values with the value X-Forwarded-Host
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.proxy.enable-forwarded-prefix was not found
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.proxy.enable-forwarded-prefix was loaded from default values with the value false
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.proxy.forwarded-prefix-header was not found
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.proxy.forwarded-prefix-header was loaded from default values with the value X-Forwarded-Prefix
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.banner.enabled was not found
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.banner.enabled was loaded from default values with the value true
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.args was not found
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.args was not found
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.thread-pool.core-threads was not found
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.thread-pool.core-threads was loaded from default values with the value 1
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.thread-pool.prefill was not found
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.thread-pool.prefill was loaded from default values with the value true
2021-08-16 23:59:41,873 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.thread-pool.max-threads was not found
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.thread-pool.max-threads was not found
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.thread-pool.queue-size was not found
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.thread-pool.queue-size was not found
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.thread-pool.growth-resistance was not found
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.thread-pool.growth-resistance was loaded from default values with the value 0
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.thread-pool.shutdown-timeout was not found
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.thread-pool.shutdown-timeout was loaded from default values with the value 1M
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.thread-pool.shutdown-interrupt was not found
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.thread-pool.shutdown-interrupt was loaded from default values with the value 10
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.thread-pool.shutdown-check-interval was not found
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.thread-pool.shutdown-check-interval was loaded from default values with the value 5
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.thread-pool.keep-alive-time was not found
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.thread-pool.keep-alive-time was loaded from default values with the value 30
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.profile was not found
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.profile was loaded from PropertiesConfigSource[source=Specified default values] with the value prod
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.configuration.build-time-mismatch-at-runtime was not found
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.configuration.build-time-mismatch-at-runtime was loaded from default values with the value warn
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.console.color was not found
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.console.color was not found
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.level was not found
2021-08-16 23:59:41,874 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.level was loaded from default values with the value INFO
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.console.enable was not found
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.console.enable was loaded from default values with the value true
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.console.stderr was not found
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.console.stderr was loaded from default values with the value false
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.console.format was not found
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.console.format was loaded from default values with the value %d{yyyy-MM-dd HH:mm:ss,SSS} %-5p [%c{3.}] (%t) %s%e%n
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.console.level was not found
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.console.level was loaded from default values with the value ALL
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.console.color was not found
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.log.console.color was not found
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.console.darken was not found
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.console.darken was loaded from PropertiesConfigSource[source=Specified default values] with the value 0
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.console.async was not found
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.console.async was loaded from default values with the value false
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.console.async.queue-length was not found
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.console.async.queue-length was loaded from default values with the value 512
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.console.async.overflow was not found
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.console.async.overflow was loaded from default values with the value block
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.file.enable was not found
2021-08-16 23:59:41,875 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.file.enable was loaded from default values with the value false
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.file.format was not found
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.file.format was loaded from default values with the value %d{yyyy-MM-dd HH:mm:ss,SSS} %h %N[%i] %-5p [%c{3.}] (%t) %s%e%n
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.file.level was not found
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.file.level was loaded from default values with the value ALL
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.file.path was not found
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.file.path was loaded from default values with the value quarkus.log
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.file.async was not found
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.file.async was loaded from default values with the value false
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.file.async.queue-length was not found
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.file.async.queue-length was loaded from default values with the value 512
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.file.async.overflow was not found
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.file.async.overflow was loaded from default values with the value block
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.file.rotation.max-file-size was not found
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.log.file.rotation.max-file-size was not found
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.file.rotation.max-backup-index was not found
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.file.rotation.max-backup-index was loaded from default values with the value 1
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.file.rotation.file-suffix was not found
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.log.file.rotation.file-suffix was not found
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.file.rotation.rotate-on-boot was not found
2021-08-16 23:59:41,876 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.file.rotation.rotate-on-boot was loaded from default values with the value true
2021-08-16 23:59:41,877 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.syslog.enable was not found
2021-08-16 23:59:41,877 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.syslog.enable was loaded from default values with the value false
2021-08-16 23:59:41,877 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.syslog.endpoint was not found
2021-08-16 23:59:41,877 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.syslog.endpoint was loaded from default values with the value localhost:514
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.syslog.app-name was not found
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.log.syslog.app-name was not found
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.syslog.hostname was not found
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.log.syslog.hostname was not found
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.syslog.facility was not found
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.syslog.facility was loaded from default values with the value user-level
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.syslog.syslog-type was not found
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.syslog.syslog-type was loaded from default values with the value rfc5424
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.syslog.protocol was not found
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.syslog.protocol was loaded from default values with the value tcp
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.syslog.use-counting-framing was not found
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.syslog.use-counting-framing was loaded from default values with the value false
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.syslog.truncate was not found
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.syslog.truncate was loaded from default values with the value true
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.syslog.block-on-reconnect was not found
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.syslog.block-on-reconnect was loaded from default values with the value false
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.syslog.format was not found
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.syslog.format was loaded from default values with the value %d{yyyy-MM-dd HH:mm:ss,SSS} %-5p [%c{3.}] (%t) %s%e%n
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.syslog.level was not found
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.syslog.level was loaded from default values with the value ALL
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.syslog.async was not found
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.syslog.async was loaded from default values with the value false
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.syslog.async.queue-length was not found
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.syslog.async.queue-length was loaded from default values with the value 512
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.syslog.async.overflow was not found
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.syslog.async.overflow was loaded from default values with the value block
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.shutdown.timeout was not found
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.shutdown.timeout was not found
2021-08-16 23:59:41,878 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.caching was not found
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.caching was loaded from default values with the value true
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.classpath-resolving was not found
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.classpath-resolving was loaded from default values with the value true
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.event-loops-pool-size was not found
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.event-loops-pool-size was not found
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.max-event-loop-execute-time was not found
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.max-event-loop-execute-time was loaded from default values with the value 2
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.warning-exception-time was not found
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.warning-exception-time was loaded from default values with the value 2
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.worker-pool-size was not found
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.worker-pool-size was loaded from default values with the value 20
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.max-worker-execute-time was not found
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.max-worker-execute-time was loaded from default values with the value 60
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.internal-blocking-pool-size was not found
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.internal-blocking-pool-size was loaded from default values with the value 20
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.queue-size was not found
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.queue-size was not found
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.growth-resistance was not found
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.growth-resistance was loaded from default values with the value 0
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.keep-alive-time was not found
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.keep-alive-time was loaded from default values with the value 30
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.prefill was not found
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.prefill was loaded from default values with the value false
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.use-async-dns was not found
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.use-async-dns was loaded from default values with the value false
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.key-certificate-pem was not found
2021-08-16 23:59:41,879 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.eventbus.key-certificate-pem was loaded from default values with the value false
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.key-certificate-pem.keys was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.eventbus.key-certificate-pem.keys was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.key-certificate-pem.certs was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.eventbus.key-certificate-pem.certs was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.key-certificate-jks was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.eventbus.key-certificate-jks was loaded from default values with the value false
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.key-certificate-jks.path was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.eventbus.key-certificate-jks.path was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.key-certificate-jks.password was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.eventbus.key-certificate-jks.password was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.key-certificate-pfx was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.eventbus.key-certificate-pfx was loaded from default values with the value false
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.key-certificate-pfx.path was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.eventbus.key-certificate-pfx.path was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.key-certificate-pfx.password was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.eventbus.key-certificate-pfx.password was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.trust-certificate-pem was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.eventbus.trust-certificate-pem was loaded from default values with the value false
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.trust-certificate-pem.certs was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.eventbus.trust-certificate-pem.certs was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.trust-certificate-jks was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.eventbus.trust-certificate-jks was loaded from default values with the value false
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.trust-certificate-jks.path was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.eventbus.trust-certificate-jks.path was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.trust-certificate-jks.password was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.eventbus.trust-certificate-jks.password was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.trust-certificate-pfx was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.eventbus.trust-certificate-pfx was loaded from default values with the value false
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.trust-certificate-pfx.path was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.eventbus.trust-certificate-pfx.path was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.trust-certificate-pfx.password was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.eventbus.trust-certificate-pfx.password was not found
2021-08-16 23:59:41,880 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.accept-backlog was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.eventbus.accept-backlog was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.client-auth was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.eventbus.client-auth was loaded from default values with the value NONE
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.connect-timeout was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.eventbus.connect-timeout was loaded from default values with the value 60
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.idle-timeout was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.eventbus.idle-timeout was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.receive-buffer-size was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.eventbus.receive-buffer-size was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.reconnect-attempts was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.eventbus.reconnect-attempts was loaded from default values with the value 0
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.reconnect-interval was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.eventbus.reconnect-interval was loaded from default values with the value 1
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.reuse-address was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.eventbus.reuse-address was loaded from default values with the value true
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.reuse-port was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.eventbus.reuse-port was loaded from default values with the value false
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.send-buffer-size was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.eventbus.send-buffer-size was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.soLinger was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.eventbus.soLinger was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.ssl was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.eventbus.ssl was loaded from default values with the value false
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.tcp-keep-alive was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.eventbus.tcp-keep-alive was loaded from default values with the value false
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.tcp-no-delay was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.eventbus.tcp-no-delay was loaded from default values with the value true
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.traffic-class was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.eventbus.traffic-class was not found
2021-08-16 23:59:41,881 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.eventbus.trust-all was not found
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.eventbus.trust-all was loaded from default values with the value false
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.cluster.host was not found
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.cluster.host was loaded from default values with the value localhost
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.cluster.port was not found
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.cluster.port was not found
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.cluster.public-host was not found
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.cluster.public-host was not found
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.cluster.public-port was not found
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.vertx.cluster.public-port was not found
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.cluster.clustered was not found
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.cluster.clustered was loaded from default values with the value false
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.cluster.ping-interval was not found
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.cluster.ping-interval was loaded from default values with the value 20
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.cluster.ping-reply-interval was not found
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.cluster.ping-reply-interval was loaded from default values with the value 20
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.resolver.cache-max-time-to-live was not found
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.resolver.cache-max-time-to-live was loaded from default values with the value 2147483647
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.resolver.cache-min-time-to-live was not found
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.resolver.cache-min-time-to-live was loaded from default values with the value 0
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.resolver.cache-negative-time-to-live was not found
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.resolver.cache-negative-time-to-live was loaded from default values with the value 0
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.vertx.prefer-native-transport was not found
2021-08-16 23:59:41,882 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.vertx.prefer-native-transport was loaded from default values with the value false
2021-08-16 23:59:41,883 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.category."io.smallrye.config".level was not found
2021-08-16 23:59:41,883 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.category."io.smallrye.config".level was loaded from PropertiesConfigSource[source=jar:file:///home/moldowan/proj/quarkus-quickstarts/getting-started/target/quarkus-app/app/getting-started-1.0.0-SNAPSHOT.jar!/application.properties] with the value DEBUG
2021-08-16 23:59:41,883 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.category."io.smallrye.config".handlers was not found
2021-08-16 23:59:41,883 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.log.category."io.smallrye.config".handlers was not found
2021-08-16 23:59:41,883 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.category."io.smallrye.config".use-parent-handlers was not found
2021-08-16 23:59:41,883 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.category."io.smallrye.config".use-parent-handlers was loaded from default values with the value true
2021-08-16 23:59:41,883 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.filter."io.netty.resolver.HostsFileParser".if-starts-with was not found
2021-08-16 23:59:41,883 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.filter."io.netty.resolver.HostsFileParser".if-starts-with was loaded from PropertiesConfigSource[source=Specified default values] with the value Failed to load and parse hosts file
2021-08-16 23:59:41,883 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.filter."io.netty.resolver.HostsFileParser".target-level was not found
2021-08-16 23:59:41,883 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.filter."io.netty.resolver.HostsFileParser".target-level was loaded from default values with the value DEBUG
2021-08-16 23:59:41,883 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.filter."io.vertx.core.impl.ContextImpl".if-starts-with was not found
2021-08-16 23:59:41,883 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.filter."io.vertx.core.impl.ContextImpl".if-starts-with was loaded from PropertiesConfigSource[source=Specified default values] with the value You have disabled TCCL checks
2021-08-16 23:59:41,883 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.filter."io.vertx.core.impl.ContextImpl".target-level was not found
2021-08-16 23:59:41,883 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.filter."io.vertx.core.impl.ContextImpl".target-level was loaded from default values with the value DEBUG
2021-08-16 23:59:41,883 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.filter."io.netty.util.internal.PlatformDependent0".if-starts-with was not found
2021-08-16 23:59:41,883 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.filter."io.netty.util.internal.PlatformDependent0".if-starts-with was loaded from PropertiesConfigSource[source=Specified default values] with the value direct buffer constructor,jdk.internal.misc.Unsafe,sun.misc.Unsafe
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.filter."io.netty.util.internal.PlatformDependent0".target-level was not found
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.filter."io.netty.util.internal.PlatformDependent0".target-level was loaded from PropertiesConfigSource[source=Specified default values] with the value TRACE
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.filter."org.jboss.threads".if-starts-with was not found
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.filter."org.jboss.threads".if-starts-with was loaded from PropertiesConfigSource[source=Specified default values] with the value JBoss Threads version
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.filter."org.jboss.threads".target-level was not found
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.filter."org.jboss.threads".target-level was loaded from default values with the value DEBUG
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.filter."org.jboss.resteasy.resteasy_jaxrs.i18n".if-starts-with was not found
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.filter."org.jboss.resteasy.resteasy_jaxrs.i18n".if-starts-with was loaded from PropertiesConfigSource[source=Specified default values] with the value RESTEASY002225
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.filter."org.jboss.resteasy.resteasy_jaxrs.i18n".target-level was not found
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.filter."org.jboss.resteasy.resteasy_jaxrs.i18n".target-level was loaded from default values with the value DEBUG
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.category."io.vertx.core.http.impl.Http1xServerRequest".level was not found
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.category."io.vertx.core.http.impl.Http1xServerRequest".level was loaded from PropertiesConfigSource[source=Specified default values] with the value OFF
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.category."io.vertx.core.http.impl.Http1xServerRequest".handlers was not found
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.log.category."io.vertx.core.http.impl.Http1xServerRequest".handlers was not found
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.category."io.vertx.core.http.impl.Http1xServerRequest".use-parent-handlers was not found
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.category."io.vertx.core.http.impl.Http1xServerRequest".use-parent-handlers was loaded from default values with the value true
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.category."io.vertx.core.impl.ContextImpl".level was not found
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.category."io.vertx.core.impl.ContextImpl".level was loaded from PropertiesConfigSource[source=Specified default values] with the value ERROR
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.category."io.vertx.core.impl.ContextImpl".handlers was not found
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.log.category."io.vertx.core.impl.ContextImpl".handlers was not found
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.category."io.vertx.core.impl.ContextImpl".use-parent-handlers was not found
2021-08-16 23:59:41,884 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.category."io.vertx.core.impl.ContextImpl".use-parent-handlers was loaded from default values with the value true
2021-08-16 23:59:41,935 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.mp.context.ManagedExecutor.maxAsync was not found
2021-08-16 23:59:41,935 DEBUG [io.sma.config] (main) SRCFG01002: The config mp.context.ManagedExecutor.maxAsync was not found
2021-08-16 23:59:41,935 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.mp.context.ManagedExecutor.maxQueued was not found
2021-08-16 23:59:41,935 DEBUG [io.sma.config] (main) SRCFG01002: The config mp.context.ManagedExecutor.maxQueued was not found
2021-08-16 23:59:41,936 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.mp.context.ManagedExecutor.propagated was not found
2021-08-16 23:59:41,936 DEBUG [io.sma.config] (main) SRCFG01002: The config mp.context.ManagedExecutor.propagated was not found
2021-08-16 23:59:41,936 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.mp.context.ManagedExecutor.cleared was not found
2021-08-16 23:59:41,936 DEBUG [io.sma.config] (main) SRCFG01002: The config mp.context.ManagedExecutor.cleared was not found
2021-08-16 23:59:41,936 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.mp.context.ThreadContext.cleared was not found
2021-08-16 23:59:41,936 DEBUG [io.sma.config] (main) SRCFG01002: The config mp.context.ThreadContext.cleared was not found
2021-08-16 23:59:41,936 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.mp.context.ThreadContext.propagated was not found
2021-08-16 23:59:41,936 DEBUG [io.sma.config] (main) SRCFG01002: The config mp.context.ThreadContext.propagated was not found
2021-08-16 23:59:41,936 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.mp.context.ThreadContext.unchanged was not found
2021-08-16 23:59:41,936 DEBUG [io.sma.config] (main) SRCFG01002: The config mp.context.ThreadContext.unchanged was not found
2021-08-16 23:59:42,017 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.package.filter-optional-dependencies was not found
2021-08-16 23:59:42,017 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.package.filter-optional-dependencies was not found
2021-08-16 23:59:42,017 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.exclude-pattern was not found
2021-08-16 23:59:42,017 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.exclude-pattern was not found
2021-08-16 23:59:42,017 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.package.manifest.add-implementation-entries was not found
2021-08-16 23:59:42,017 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.package.manifest.add-implementation-entries was not found
2021-08-16 23:59:42,017 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.dev-ui.history-size was not found
2021-08-16 23:59:42,018 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.dev-ui.history-size was not found
2021-08-16 23:59:42,018 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.resteasy.ignore-application-classes was not found
2021-08-16 23:59:42,018 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.resteasy.ignore-application-classes was not found
2021-08-16 23:59:42,018 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.bootstrap.effective-model-builder was not found
2021-08-16 23:59:42,018 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.bootstrap.effective-model-builder was not found
2021-08-16 23:59:42,018 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.class-loading.reloadable-artifacts was not found
2021-08-16 23:59:42,018 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.class-loading.reloadable-artifacts was not found
2021-08-16 23:59:42,018 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.resteasy.build-time-condition-aware was not found
2021-08-16 23:59:42,018 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.resteasy.build-time-condition-aware was not found
2021-08-16 23:59:42,018 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.package.output-directory was not found
2021-08-16 23:59:42,018 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.package.output-directory was not found
2021-08-16 23:59:42,018 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.include-tags was not found
2021-08-16 23:59:42,018 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.include-tags was not found
2021-08-16 23:59:42,018 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.disable-console-input was not found
2021-08-16 23:59:42,018 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.disable-console-input was not found
2021-08-16 23:59:42,019 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.package.include-dependency-list was not found
2021-08-16 23:59:42,019 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.package.include-dependency-list was not found
2021-08-16 23:59:42,019 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.arc.devMode.monitoring-enabled was not found
2021-08-16 23:59:42,019 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.arc.devMode.monitoring-enabled was not found
2021-08-16 23:59:42,019 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.location-cookie was not found
2021-08-16 23:59:42,019 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.location-cookie was loaded from default values with the value quarkus-redirect-location
2021-08-16 23:59:42,019 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus..config.locations was not found
2021-08-16 23:59:42,019 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus..config.locations was not found
2021-08-16 23:59:42,019 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.type was not found
2021-08-16 23:59:42,019 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.type was not found
2021-08-16 23:59:42,019 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.package.fernflower.hash was not found
2021-08-16 23:59:42,019 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.package.fernflower.hash was not found
2021-08-16 23:59:42,019 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.container-runtime-options was not found
2021-08-16 23:59:42,019 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.container-runtime-options was not found
2021-08-16 23:59:42,019 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.ssl.client-auth was not found
2021-08-16 23:59:42,019 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.ssl.client-auth was loaded from default values with the value NONE
2021-08-16 23:59:42,020 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.live-reload.retry-interval was not found
2021-08-16 23:59:42,020 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.live-reload.retry-interval was loaded from default values with the value 2s
2021-08-16 23:59:42,020 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.metrics.enabled was not found
2021-08-16 23:59:42,020 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.metrics.enabled was loaded from default values with the value false
2021-08-16 23:59:42,020 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.console.disable-input was not found
2021-08-16 23:59:42,020 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.console.disable-input was not found
2021-08-16 23:59:42,020 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.enable-vm-inspection was not found
2021-08-16 23:59:42,020 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.enable-vm-inspection was not found
2021-08-16 23:59:42,020 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.live-reload.watched-resources was not found
2021-08-16 23:59:42,020 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.live-reload.watched-resources was not found
2021-08-16 23:59:42,021 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.package.fernflower.jar-directory was not found
2021-08-16 23:59:42,021 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.package.fernflower.jar-directory was not found
2021-08-16 23:59:42,021 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.arc.auto-inject-fields was not found
2021-08-16 23:59:42,021 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.arc.auto-inject-fields was not found
2021-08-16 23:59:42,021 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.arc.auto-producer-methods was not found
2021-08-16 23:59:42,021 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.arc.auto-producer-methods was not found
2021-08-16 23:59:42,021 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.test-timeout was not found
2021-08-16 23:59:42,021 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.test-timeout was loaded from default values with the value 30s
2021-08-16 23:59:42,021 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.arc.detect-unused-false-positives was not found
2021-08-16 23:59:42,021 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.arc.detect-unused-false-positives was not found
2021-08-16 23:59:42,021 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.class-loading.removed-artifacts was not found
2021-08-16 23:59:42,022 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.class-loading.removed-artifacts was not found
2021-08-16 23:59:42,022 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.include-pattern was not found
2021-08-16 23:59:42,022 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.include-pattern was not found
2021-08-16 23:59:42,022 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.realm was not found
2021-08-16 23:59:42,022 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.realm was loaded from default values with the value Quarkus
2021-08-16 23:59:42,022 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.flat-class-path was not found
2021-08-16 23:59:42,022 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.flat-class-path was not found
2021-08-16 23:59:42,022 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.banner.path was not found
2021-08-16 23:59:42,023 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.banner.path was not found
2021-08-16 23:59:42,023 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.package.create-appcds was not found
2021-08-16 23:59:42,023 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.package.create-appcds was not found
2021-08-16 23:59:42,023 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.arc.ignored-split-packages was not found
2021-08-16 23:59:42,023 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.arc.ignored-split-packages was not found
2021-08-16 23:59:42,023 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.landing-page was not found
2021-08-16 23:59:42,023 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.landing-page was loaded from default values with the value /index.html
2021-08-16 23:59:42,023 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.proactive was not found
2021-08-16 23:59:42,023 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.proactive was loaded from default values with the value true
2021-08-16 23:59:42,024 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.package.runner-suffix was not found
2021-08-16 23:59:42,024 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.package.runner-suffix was not found
2021-08-16 23:59:42,024 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.native-image-profile was not found
2021-08-16 23:59:42,024 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.native-image-profile was not found
2021-08-16 23:59:42,024 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.report-exception-stack-traces was not found
2021-08-16 23:59:42,024 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.report-exception-stack-traces was not found
2021-08-16 23:59:42,024 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.ssl.native was not found
2021-08-16 23:59:42,024 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.ssl.native was not found
2021-08-16 23:59:42,024 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.resteasy.gzip.enabled was not found
2021-08-16 23:59:42,025 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.resteasy.gzip.enabled was not found
2021-08-16 23:59:42,025 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.arc.detect-wrong-annotations was not found
2021-08-16 23:59:42,025 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.arc.detect-wrong-annotations was not found
2021-08-16 23:59:42,025 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.resources.includes was not found
2021-08-16 23:59:42,025 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.resources.includes was not found
2021-08-16 23:59:42,025 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.add-all-charsets was not found
2021-08-16 23:59:42,025 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.add-all-charsets was not found
2021-08-16 23:59:42,025 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.live-reload.url was not found
2021-08-16 23:59:42,025 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.live-reload.url was not found
2021-08-16 23:59:42,025 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.enable-isolates was not found
2021-08-16 23:59:42,025 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.enable-isolates was not found
2021-08-16 23:59:42,025 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.application.name was not found
2021-08-16 23:59:42,025 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.application.name was loaded from PropertiesConfigSource[source=Build time config] with the value getting-started
2021-08-16 23:59:42,026 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.enable-http-url-handler was not found
2021-08-16 23:59:42,026 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.enable-http-url-handler was not found
2021-08-16 23:59:42,026 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.tls.trust-all was not found
2021-08-16 23:59:42,026 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.tls.trust-all was loaded from default values with the value false
2021-08-16 23:59:42,026 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.jni.library-paths was not found
2021-08-16 23:59:42,026 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.jni.library-paths was not found
2021-08-16 23:59:42,026 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.user-language was not found
2021-08-16 23:59:42,026 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.user-language was not found
2021-08-16 23:59:42,026 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.reuse-existing was not found
2021-08-16 23:59:42,026 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.reuse-existing was not found
2021-08-16 23:59:42,026 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.console was not found
2021-08-16 23:59:42,026 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.console was not found
2021-08-16 23:59:42,026 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.package.output-name was not found
2021-08-16 23:59:42,026 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.package.output-name was not found
2021-08-16 23:59:42,027 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.cookie-name was not found
2021-08-16 23:59:42,027 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.cookie-name was loaded from default values with the value quarkus-credential
2021-08-16 23:59:42,027 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.resteasy.vertx.response-buffer-size was not found
2021-08-16 23:59:42,027 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.resteasy.vertx.response-buffer-size was not found
2021-08-16 23:59:42,027 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.class-loading.parent-first-artifacts was not found
2021-08-16 23:59:42,027 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.class-loading.parent-first-artifacts was not found
2021-08-16 23:59:42,027 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.live-reload.instrumentation was not found
2021-08-16 23:59:42,027 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.live-reload.instrumentation was loaded from default values with the value false
2021-08-16 23:59:42,027 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.enable-fallback-images was not found
2021-08-16 23:59:42,027 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.enable-fallback-images was not found
2021-08-16 23:59:42,027 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.java-home was not found
2021-08-16 23:59:42,027 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.java-home was not found
2021-08-16 23:59:42,028 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.live-reload.connect-timeout was not found
2021-08-16 23:59:42,028 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.live-reload.connect-timeout was loaded from default values with the value 30s
2021-08-16 23:59:42,028 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.package.appcds-builder-image was not found
2021-08-16 23:59:42,028 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.package.appcds-builder-image was not found
2021-08-16 23:59:42,028 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.arg-line was not found
2021-08-16 23:59:42,028 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.arg-line was not found
2021-08-16 23:59:42,028 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.post-location was not found
2021-08-16 23:59:42,028 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.post-location was loaded from default values with the value /j_security_check
2021-08-16 23:59:42,028 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.hang-detection-timeout was not found
2021-08-16 23:59:42,028 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.hang-detection-timeout was not found
2021-08-16 23:59:42,028 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.publish-debug-build-process-port was not found
2021-08-16 23:59:42,029 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.publish-debug-build-process-port was not found
2021-08-16 23:59:42,029 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.login-page was not found
2021-08-16 23:59:42,029 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.login-page was loaded from default values with the value /login.html
2021-08-16 23:59:42,029 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.debug.generated-classes-dir was not found
2021-08-16 23:59:42,029 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.debug.generated-classes-dir was not found
2021-08-16 23:59:42,029 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.log.min-level was not found
2021-08-16 23:59:42,029 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.log.min-level was loaded from default values with the value DEBUG
2021-08-16 23:59:42,029 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.arc.exclude-types was not found
2021-08-16 23:59:42,029 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.arc.exclude-types was not found
2021-08-16 23:59:42,029 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.basic-console was not found
2021-08-16 23:59:42,029 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.basic-console was not found
2021-08-16 23:59:42,029 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.container-runtime was not found
2021-08-16 23:59:42,029 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.container-runtime was not found
2021-08-16 23:59:42,029 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.application.version was not found
2021-08-16 23:59:42,029 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.application.version was loaded from PropertiesConfigSource[source=Build time config] with the value 1.0.0-SNAPSHOT
2021-08-16 23:59:42,030 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.builder-image was not found
2021-08-16 23:59:42,030 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.builder-image was not found
2021-08-16 23:59:42,030 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.arc.selected-alternatives was not found
2021-08-16 23:59:42,030 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.arc.selected-alternatives was not found
2021-08-16 23:59:42,030 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.live-reload.retry-max-attempts was not found
2021-08-16 23:59:42,030 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.live-reload.retry-max-attempts was loaded from default values with the value 10
2021-08-16 23:59:42,030 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.native-image-xmx was not found
2021-08-16 23:59:42,030 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.native-image-xmx was not found
2021-08-16 23:59:42,030 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.timeout was not found
2021-08-16 23:59:42,030 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.timeout was loaded from default values with the value PT30M
2021-08-16 23:59:42,030 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.full-stack-traces was not found
2021-08-16 23:59:42,030 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.full-stack-traces was not found
2021-08-16 23:59:42,031 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.platform.version was not found
2021-08-16 23:59:42,031 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.platform.version was not found
2021-08-16 23:59:42,031 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.live-reload.password was not found
2021-08-16 23:59:42,031 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.live-reload.password was not found
2021-08-16 23:59:42,031 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.resteasy.metrics.enabled was not found
2021-08-16 23:59:42,031 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.resteasy.metrics.enabled was not found
2021-08-16 23:59:42,031 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.inline-before-analysis was not found
2021-08-16 23:59:42,031 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.inline-before-analysis was not found
2021-08-16 23:59:42,031 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.basic was not found
2021-08-16 23:59:42,031 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.basic was loaded from default values with the value false
2021-08-16 23:59:42,031 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.non-application-root-path was not found
2021-08-16 23:59:42,031 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.non-application-root-path was loaded from default values with the value q
2021-08-16 23:59:42,032 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.platform.artifact-id was not found
2021-08-16 23:59:42,032 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.platform.artifact-id was not found
2021-08-16 23:59:42,032 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.debug-build-process was not found
2021-08-16 23:59:42,032 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.debug-build-process was not found
2021-08-16 23:59:42,032 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.dump-proxies was not found
2021-08-16 23:59:42,032 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.dump-proxies was not found
2021-08-16 23:59:42,032 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.package.main-class was not found
2021-08-16 23:59:42,032 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.package.main-class was not found
2021-08-16 23:59:42,032 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.wait-time was not found
2021-08-16 23:59:42,032 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.wait-time was not found
2021-08-16 23:59:42,032 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.package.included-optional-dependencies was not found
2021-08-16 23:59:42,032 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.package.included-optional-dependencies was not found
2021-08-16 23:59:42,032 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.virtual was not found
2021-08-16 23:59:42,033 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.virtual was loaded from default values with the value false
2021-08-16 23:59:42,033 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.bootstrap.misaligned-platform-imports was not found
2021-08-16 23:59:42,033 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.bootstrap.misaligned-platform-imports was not found
2021-08-16 23:59:42,033 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.enable-server was not found
2021-08-16 23:59:42,033 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.enable-server was not found
2021-08-16 23:59:42,033 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.resteasy-json.json-default was not found
2021-08-16 23:59:42,033 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.resteasy-json.json-default was not found
2021-08-16 23:59:42,033 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.console.basic was not found
2021-08-16 23:59:42,033 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.console.basic was not found
2021-08-16 23:59:42,033 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.redirect-after-login was not found
2021-08-16 23:59:42,033 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.redirect-after-login was loaded from default values with the value true
2021-08-16 23:59:42,034 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.auto-service-loader-registration was not found
2021-08-16 23:59:42,034 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.auto-service-loader-registration was not found
2021-08-16 23:59:42,034 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.netty.allocator-max-order was not found
2021-08-16 23:59:42,034 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.netty.allocator-max-order was not found
2021-08-16 23:59:42,034 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.arc.remove-unused-beans was not found
2021-08-16 23:59:42,034 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.arc.remove-unused-beans was not found
2021-08-16 23:59:42,034 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.username-parameter was not found
2021-08-16 23:59:42,034 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.username-parameter was loaded from default values with the value j_username
2021-08-16 23:59:42,034 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.ide.target was not found
2021-08-16 23:59:42,034 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.ide.target was not found
2021-08-16 23:59:42,034 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.console.enabled was not found
2021-08-16 23:59:42,034 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.console.enabled was not found
2021-08-16 23:59:42,034 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.debug.reflection was not found
2021-08-16 23:59:42,035 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.debug.reflection was not found
2021-08-16 23:59:42,035 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.enable-https-url-handler was not found
2021-08-16 23:59:42,035 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.enable-https-url-handler was not found
2021-08-16 23:59:42,035 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.package.type was not found
2021-08-16 23:59:42,035 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.package.type was not found
2021-08-16 23:59:42,035 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.password-parameter was not found
2021-08-16 23:59:42,035 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.password-parameter was loaded from default values with the value j_password
2021-08-16 23:59:42,035 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.user-country was not found
2021-08-16 23:59:42,035 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.user-country was not found
2021-08-16 23:59:42,035 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.arc.unremovable-types was not found
2021-08-16 23:59:42,035 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.arc.unremovable-types was not found
2021-08-16 23:59:42,035 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.resteasy.gzip.max-input was not found
2021-08-16 23:59:42,035 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.resteasy.gzip.max-input was not found
2021-08-16 23:59:42,035 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.enable-all-security-services was not found
2021-08-16 23:59:42,035 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.enable-all-security-services was not found
2021-08-16 23:59:42,035 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.enabled was not found
2021-08-16 23:59:42,035 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.enabled was loaded from default values with the value false
2021-08-16 23:59:42,036 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.report-errors-at-runtime was not found
2021-08-16 23:59:42,036 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.report-errors-at-runtime was not found
2021-08-16 23:59:42,036 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.class-clone-pattern was not found
2021-08-16 23:59:42,036 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.class-clone-pattern was not found
2021-08-16 23:59:42,036 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.package.fernflower.enabled was not found
2021-08-16 23:59:42,036 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.package.fernflower.enabled was not found
2021-08-16 23:59:42,036 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.security.jaxrs.deny-unannotated-endpoints was not found
2021-08-16 23:59:42,036 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.security.jaxrs.deny-unannotated-endpoints was loaded from default values with the value false
2021-08-16 23:59:42,036 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.enable-reports was not found
2021-08-16 23:59:42,036 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.enable-reports was not found
2021-08-16 23:59:42,036 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.package.user-configured-ignored-entries was not found
2021-08-16 23:59:42,036 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.package.user-configured-ignored-entries was not found
2021-08-16 23:59:42,036 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus..config.profile.parent was not found
2021-08-16 23:59:42,037 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus..config.profile.parent was not found
2021-08-16 23:59:42,037 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.resources.excludes was not found
2021-08-16 23:59:42,037 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.resources.excludes was not found
2021-08-16 23:59:42,037 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.remote-container-build was not found
2021-08-16 23:59:42,037 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.remote-container-build was not found
2021-08-16 23:59:42,037 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.container-build was not found
2021-08-16 23:59:42,037 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.container-build was not found
2021-08-16 23:59:42,037 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.cleanup-server was not found
2021-08-16 23:59:42,037 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.cleanup-server was not found
2021-08-16 23:59:42,037 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus..default-locale was not found
2021-08-16 23:59:42,037 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus..default-locale was not found
2021-08-16 23:59:42,037 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.display-test-output was not found
2021-08-16 23:59:42,037 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.display-test-output was not found
2021-08-16 23:59:42,037 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.jni.enable was not found
2021-08-16 23:59:42,037 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.jni.enable was not found
2021-08-16 23:59:42,037 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.package.user-providers-directory was not found
2021-08-16 23:59:42,037 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.package.user-providers-directory was not found
2021-08-16 23:59:42,038 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.resteasy.path was not found
2021-08-16 23:59:42,038 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.resteasy.path was not found
2021-08-16 23:59:42,038 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.root-path was not found
2021-08-16 23:59:42,038 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.root-path was loaded from default values with the value /
2021-08-16 23:59:42,038 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.resteasy.singleton-resources was not found
2021-08-16 23:59:42,038 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.resteasy.singleton-resources was not found
2021-08-16 23:59:42,038 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus..uuid was not found
2021-08-16 23:59:42,038 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus..uuid was not found
2021-08-16 23:59:42,038 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.graalvm-home was not found
2021-08-16 23:59:42,038 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.graalvm-home was not found
2021-08-16 23:59:42,038 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.error-page was not found
2021-08-16 23:59:42,038 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.error-page was loaded from default values with the value /error.html
2021-08-16 23:59:42,039 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.profile.tags was not found
2021-08-16 23:59:42,039 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.profile.tags was not found
2021-08-16 23:59:42,039 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.file-encoding was not found
2021-08-16 23:59:42,039 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.file-encoding was not found
2021-08-16 23:59:42,039 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.continuous-testing was not found
2021-08-16 23:59:42,039 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.continuous-testing was not found
2021-08-16 23:59:42,039 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.debug.enabled was not found
2021-08-16 23:59:42,039 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.debug.enabled was not found
2021-08-16 23:59:42,039 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.disable-color was not found
2021-08-16 23:59:42,039 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.disable-color was not found
2021-08-16 23:59:42,039 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.additional-build-args was not found
2021-08-16 23:59:42,039 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.additional-build-args was not found
2021-08-16 23:59:42,039 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.http.auth.form.new-cookie-interval was not found
2021-08-16 23:59:42,040 DEBUG [io.sma.config] (main) SRCFG01001: The config quarkus.http.auth.form.new-cookie-interval was loaded from default values with the value PT1M
2021-08-16 23:59:42,040 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.enable-dashboard-dump was not found
2021-08-16 23:59:42,040 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.enable-dashboard-dump was not found
2021-08-16 23:59:42,040 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.exclude-tags was not found
2021-08-16 23:59:42,040 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.exclude-tags was not found
2021-08-16 23:59:42,040 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.test.profile. was not found
2021-08-16 23:59:42,040 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.test.profile. was not found
2021-08-16 23:59:42,040 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus..locales was not found
2021-08-16 23:59:42,040 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus..locales was not found
2021-08-16 23:59:42,041 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.arc.transform-unproxyable-classes was not found
2021-08-16 23:59:42,041 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.arc.transform-unproxyable-classes was not found
2021-08-16 23:59:42,041 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.arc.config-properties-default-naming-strategy was not found
2021-08-16 23:59:42,041 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.arc.config-properties-default-naming-strategy was not found
2021-08-16 23:59:42,041 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.native.enable-jni was not found
2021-08-16 23:59:42,041 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.native.enable-jni was not found
2021-08-16 23:59:42,041 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.platform.group-id was not found
2021-08-16 23:59:42,041 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.platform.group-id was not found
2021-08-16 23:59:42,041 DEBUG [io.sma.config] (main) SRCFG01002: The config %prod.quarkus.arc.test.disable-application-lifecycle-observers was not found
2021-08-16 23:59:42,041 DEBUG [io.sma.config] (main) SRCFG01002: The config quarkus.arc.test.disable-application-lifecycle-observers was not found

This is very useful! I'm just wondering whether a more "compact" output could be added? E.g. in properties format? Or even YAML (additionally)?

@gastaldi
Copy link
Contributor

Some emoticons would be nice too, like ❌ for missing properties and ✔️ for existing ones

@gastaldi
Copy link
Contributor

But IMHO showing only what's set should be enough, given the amount of properties

@radcortez
Copy link
Member

This can be really verbose, especially because Quarkus deals with a huge number of configurations. Also, because we start two instances of Config (one for static and another one for runtime) it may duplicate some of the lookups. I don't see too much to reduce, except for the profile lookup and combine it into a single log entry.

Regarding a properties format or yaml, I think that is a different use case. What we have here is a log entry for each lookup to a certain configuration name. I think this format makes sense. I'm guessing that you prefer to have something that just outputs the current state of the configuration?

@famod
Copy link
Member

famod commented Aug 18, 2021

I'm guessing that you prefer to have something that just outputs the current state of the configuration?

Primarily, yes. But I also do see the benefit of getting more details of the "why" in some cases.

@ppatierno
Copy link
Contributor

@radcortez are there any improvements on this since 2021? I cannot see any.
I tried your suggested solution about the logging interceptor and enabling the DEBUG mode but it's really verbose.
Sometimes what we want is just configuration values of some parameters (for example the ones which are specific to the application). Having some attribute on the @ConfigMapping to set as "log this class" would be useful.
The thing is because the configuration works by using interface(s) we cannot have a simple toString override that could be enough to build the text and log. So right now the only option I see for Quarkus users is to write a dedicated logging method somewhere else.
Any thoughts?

@radcortez
Copy link
Member

If you add a toString method in your mapping class, we will generate a proper toString method will all configuration values (and nested elements) for the mapping. Would that help?

@ppatierno
Copy link
Contributor

I am using ConfigMapping on interfaces so I can't add a toString method. Even if I do something like this:

default String toString() {
            return "thestring";
        }

I get this default method toString in interface io.strimzi.kafka.bridge.quarkus.config.HttpConfig.Cors overrides a member of java.lang.Object.
My only way was having an asString method declared the same way and being used to print configuration.

@radcortez
Copy link
Member

radcortez commented Apr 28, 2023

You can. Just add the toString signature in the top class:

@ConfigMapping(prefix = "server")
interface ToStringMapping {
    String host();

    int port();

    List<Alias> aliases();

    String toString();

    interface Alias {
        String name();

        String toString();
    }
}

And if you try it:

SmallRyeConfig config = new SmallRyeConfigBuilder()
        .withMapping(ToStringMapping.class)
        .withSources(config(
                "server.host", "localhost",
                "server.port", "8080",
                "server.aliases[0].name", "prod-1",
                "server.aliases[1].name", "prod-2"))
        .withConverter(Version.class, 100, new VersionConverter())
        .build();

ToStringMapping mapping = config.getConfigMapping(ToStringMapping.class);
System.out.println(mapping.toString());

You get:

ToStringMapping{host=localhost, port=8080, aliases=[Alias{name=prod-1}, Alias{name=prod-2}]}

@ppatierno
Copy link
Contributor

@radcortez it worked thanks! Any chance it's documented somewhere and I missed it? I think it's something important to highlight.

@radcortez
Copy link
Member

@ppatierno
Copy link
Contributor

Ah ... the usual problem between doc in Quarkus and not duplicating what is already in the Smallrye doc :-(
Btw, thanks!

@Marcuse7
Copy link

The links in this discussion are so valuable but imho hard to find. The config interceptor doc is at https://smallrye.io/smallrye-config/Main/extensions/interceptors/ now, the mappings at https://smallrye.io/smallrye-config/Main/config/mappings/ .

@radcortez
Copy link
Member

In the meantime, we added a configuration to log the values, and it is part of the Quarkus Config documentation: https://quarkus.io/guides/config-reference#configuration-reference

How can we make this more visible?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/config kind/enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

7 participants