differentiate log messages (#4183)

This commit is contained in:
Bernhard Schuster
2021-10-30 18:17:25 +02:00
committed by GitHub
parent 32c7ad8137
commit 0b5d1802a1
@@ -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
},
@@ -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)
@@ -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)
},