Skip to content

Commit

Permalink
Replace println
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeHahn committed Jul 7, 2023
1 parent 7527240 commit 7a330fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/blackhole/sqs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use rand::{distributions::Alphanumeric, thread_rng, Rng};
use serde::Deserialize;
use tokio::time::Duration;
use tower::ServiceBuilder;
use tracing::{error, info};
use tracing::{debug, error, info, warn};

use crate::signals::Shutdown;

Expand Down Expand Up @@ -259,7 +259,7 @@ async fn srv(
.unwrap())
}
action => {
println!("Unknown action: {action:?}");
debug!("Unknown action: {action:?}");
Ok(Response::builder()
.status(StatusCode::NOT_IMPLEMENTED)
.body(Body::from(vec![]))
Expand Down

0 comments on commit 7a330fd

Please sign in to comment.