Skip to content

Commit

Permalink
Made retry info a debug rather than warn
Browse files Browse the repository at this point in the history
  • Loading branch information
rozbb committed Jan 5, 2025
1 parent fcfc2a4 commit 5ad66be
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions scripts/dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
set -euo pipefail
IFS=$'\n\t'

export RUST_LOG=readtomyshoe_server

(trap 'kill 0' SIGINT; \
bash -c ' \
cd frontend; \
Expand Down
2 changes: 1 addition & 1 deletion server/src/tts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ pub(crate) async fn tts_single(api_key: &str, req: &TtsRequest) -> Result<Bytes,
format!("{}", payload).hash(&mut h);
h.finish()
};
tracing::warn!("Running TTS chunk with payload {}", payload_id);
tracing::debug!("Running TTS chunk with payload {}", payload_id);
let res = client
.post(url.clone())
.json(&payload)
Expand Down

0 comments on commit 5ad66be

Please sign in to comment.