Skip to content

Commit

Permalink
refactor: moved warn events to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoverson committed Aug 4, 2023
1 parent 99d6804 commit 60ea83b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ impl Transaction {
} else if packet.is_noop() {
// TODO: propagate this and/or its context if it becomes an issue.
} else {
warn!(port = packet.port(), "dropping packet for unconnected port");
debug!(port = packet.port(), "dropping packet for unconnected port");
}
}
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ impl Validator {
let mut walker = SchematicWalker::from_port(schematic, port.detached(), WalkDirection::Down);
let next = walker.nth(1);
if next.is_none() {
warn!(id=node.name.clone(), operation = %reference, port = %field.name, "unhandled downstream connection");
debug!(id=node.name.clone(), operation = %reference, port = %field.name, "unhandled downstream connection");
// validation_errors.push(ValidationError::UnusedOutput {
// port: field.name.clone(),
// id: node.name.clone(),
Expand Down

0 comments on commit 60ea83b

Please sign in to comment.