Skip to content

Commit

Permalink
Bump version to 0.9.2
Browse files Browse the repository at this point in the history
Adjusts a few log lines
  • Loading branch information
ff14wed committed Mar 15, 2023
1 parent 2daae76 commit d236228
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deucalion"
version = "0.9.1"
version = "0.9.2"
authors = ["ff14wed"]
edition = "2021"
build = "build.rs"
Expand Down
1 change: 1 addition & 0 deletions src/hook/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ impl State {
}

pub fn shutdown(&self) {
info!("Shutting down hooks...");
self.recv_hook.shutdown();
self.send_hook.shutdown();
self.send_lobby_hook.shutdown();
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ async fn main_with_result() -> Result<()> {

// Signal the msg loop to exit and shut down the hook
drop(shutdown_tx);
info!("Hook shutdown initiated...");
info!("Shutting down broadcast loop...");
msg_loop_handle.await?;
info!("Shut down!");
Ok(())
Expand Down

0 comments on commit d236228

Please sign in to comment.