1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 14:26:04 +00:00

change a println in bot/main.rs

This commit is contained in:
mat 2022-11-21 23:48:57 -06:00
parent 40fd1a922f
commit b6b99e61f0

View file

@ -148,7 +148,7 @@ async fn swarm_handle(
swarm.add(account, State::default()).await?;
}
SwarmEvent::Chat(m) => {
println!(">>> swarm chat message: {}", m.message().to_ansi(None));
println!("swarm chat message: {}", m.message().to_ansi(None));
}
_ => {}
}