Reduce logs

This commit is contained in:
Erik
2023-04-25 12:56:32 +02:00
parent f3c20341fa
commit b684c1dd76
3 changed files with 3 additions and 3 deletions

View File

@ -140,7 +140,7 @@ pub async fn process_command(
(
StatusCode::ACCEPTED,
Json(ProxyResponse {
message: "Success".to_string(),
message: "success".to_string(),
}),
)
}

View File

@ -10,7 +10,7 @@ use tracing::Level;
async fn main() {
// initialize tracing
let subscriber = tracing_subscriber::FmtSubscriber::builder()
.with_max_level(Level::TRACE)
.with_max_level(Level::INFO)
.finish();
tracing::subscriber::set_global_default(subscriber).unwrap();