remove println

This commit is contained in:
mii
2022-08-09 22:09:22 +09:00
parent cb4e901def
commit af902c3c97
2 changed files with 0 additions and 2 deletions

View File

@ -275,7 +275,6 @@ impl EventHandler for Handler {
return;
}
println!("READ: {:?}", message);
instance.read(message, &ctx).await;
}
}

View File

@ -46,7 +46,6 @@ impl TTSMessage for Message {
async fn synthesize(&self, instance: &mut TTSInstance, ctx: &Context) -> String {
let text = self.parse(instance, ctx).await;
println!("Parsed: {:?}", text);
let data_read = ctx.data.read().await;
let storage = data_read.get::<TTSClientData>().expect("Cannot get GCP TTSClientStorage").clone();