why don't you simply catch exception to differenti...
# ktor
c
why don't you simply catch exception to differentiate?
Copy code
try {        
    proceed()
    logCallFinishedSuccess(call) // including 404 due to unrouted
} catch(t: Throwable) {
    logCallFinishedFailed(call, t)
    throw t
}