Is there a way to change these client configuratio...
# ktor
x
Is there a way to change these client configurations during runtime, after they have been configured?
Copy code
install(Logging) {
  this.logger = get()
  this.level = ALL
}
1
a
Unfortunately, no, but you can create a new client instance with overridden configuration https://api.ktor.io/ktor-client/ktor-client-core/io.ktor.client/-http-client/config.html.
👍 2
x
Yeah restarting the app to load the config would be the safest bet
122 Views