Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
differentiate log messages (#4183)
Browse files Browse the repository at this point in the history
  • Loading branch information
drahnr committed Oct 30, 2021
1 parent 4f2a52f commit ad019dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions node/core/dispute-coordinator/src/real/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ where
tracing::warn!(
target: LOG_TARGET,
session,
"Missing info for session which has an active dispute",
"Recovering lacks info for session which has an active dispute",
);
continue
},
Expand Down Expand Up @@ -861,7 +861,7 @@ async fn handle_import_statements(
tracing::warn!(
target: LOG_TARGET,
session,
"Missing info for session which has an active dispute",
"Importing statement lacks info for session which has an active dispute",
);

return Ok(ImportStatementsResult::InvalidImport)
Expand Down Expand Up @@ -894,7 +894,7 @@ async fn handle_import_statements(
tracing::warn!(
target: LOG_TARGET,
session,
"Missing info for session which has an active dispute",
"Not seen backing vote for candidate which has an active dispute",
);
return Ok(ImportStatementsResult::InvalidImport)
},
Expand Down

0 comments on commit ad019dd

Please sign in to comment.