我正在玩 spray.io,但我无法使喷雾调试指令 logRequestResponse 工作 - 我在日志中看不到任何输出。
val route: Route = {
pathPrefix("city") {
pathPrefix("v1") {
path("transaction" / Segment / Segment) {
(siteId: String, transactionId: String) =>
post {
authenticate(BasicAuth(UserPasswordAuthenticator _, realm = "bd cinema import api")) {
user =>
DebuggingDirectives.logRequestResponse("city-trans", Logging.InfoLevel) {
val resp = "Hello"
complete {
resp
}
}
}
}
}
}
}
}
我在这里错过了什么吗?我是否需要在喷雾配置的某个地方启用全局调试?我尝试了不同的地方,但没有一个按预期工作