Skip to content

Commit 22a5038

Browse files
committed
Moved a log message from error to debug and updated version
1 parent 59bca89 commit 22a5038

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ members = [
1616
]
1717

1818
[workspace.dependencies]
19-
spawned-rt = { path = "rt", version = "0.4.1" }
20-
spawned-concurrency = { path = "concurrency", version = "0.4.1" }
19+
spawned-rt = { path = "rt", version = "0.4.2" }
20+
spawned-concurrency = { path = "concurrency", version = "0.4.2" }
2121
tracing = { version = "0.1.41", features = ["log"] }
2222
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
2323

2424
[workspace.package]
25-
version = "0.4.1"
25+
version = "0.4.2"
2626
license = "MIT"
2727
edition = "2021"

concurrency/src/tasks/gen_server.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ where
351351
let is_cancelled = pin!(cancelation_token.cancelled());
352352
let signal = pin!(future);
353353
match future::select(is_cancelled, signal).await {
354-
future::Either::Left(_) => tracing::error!("GenServer stopped"),
354+
future::Either::Left(_) => tracing::debug!("GenServer stopped"),
355355
future::Either::Right(_) => {
356356
if let Err(e) = handle_clone.cast(message).await {
357357
tracing::error!("Failed to send message: {e:?}")

0 commit comments

Comments
 (0)