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

replace eprintln with warn

This commit is contained in:
mat 2025-04-19 10:47:16 -05:45
parent a05a0b709c
commit 68244615f7

View file

@ -257,7 +257,7 @@ impl PathfinderClientExt for azalea_client::Client {
match tick_broadcaster.recv().await {
Ok(_) => (),
Err(RecvError::Closed) => return,
Err(err) => eprintln!("{err}"),
Err(err) => warn!("{err}"),
};
}
}