We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f45539 commit 413f71bCopy full SHA for 413f71b
backend/jvm/src/main/kotlin/dev/suresh/App.kt
@@ -17,11 +17,11 @@ fun main(args: Array<String>) =
17
EngineMain.main(args)
18
} catch (e: Throwable) {
19
val log = KtorSimpleLogger("main")
20
- log.error("Failed to start the application: ${e.message}", e)
+ log.error("Failed to start ${BuildConfig.description}: ${e.message}", e)
21
}
22
23
fun Application.module() {
24
- log.info("Starting App: ${BuildConfig.version}...")
+ log.info("Starting ${BuildConfig.description} v${BuildConfig.version}...")
25
AppConfig.init(environment.config)
26
configureInterceptors()
27
configureHTTP()
0 commit comments