Skip to content

Commit

Permalink
Change emergency channel usage from error into warn logging
Browse files Browse the repository at this point in the history
  • Loading branch information
helgoboss committed Dec 30, 2024
1 parent 5d6f0ef commit adc888c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/src/channels.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ impl<T> ImportantSenderFromRtToNormalThread<T> {
if let Err(e) = self.bounded_normal_sender.try_send(msg) {
match e {
TrySendError::Full(msg) => {
tracing::error!(
tracing::warn!(
msg = "Main sequence channel was full, using emergency channel (may allocate)!",
%self.channel_name,
);
Expand Down

0 comments on commit adc888c

Please sign in to comment.