<@U0ERB7X41> you can intercept all calls inside a ...
# ktor
o
@hinst you can intercept all calls inside a static route:
Copy code
static(webPath + "/" + folder) {
                intercept(ApplicationCallPipeline.Infrastructure) {
                    call.application.log.trace(call.request.uri)
                }
                files(appMainPath + "/" + folder) 
        }
👍 1