Skip to content

Commit

Permalink
Remove noisy log message
Browse files Browse the repository at this point in the history
  • Loading branch information
russss committed Apr 17, 2024
1 parent e82f0a2 commit 0ad959f
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions buildmap/plugins/noc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,16 +190,9 @@ def get_links(self) -> Iterator[Link]:
)
# if not from_location or not to_location:
# continue

# self.log.info("Link from %s to %s" % (from_switch, to_switch))


type = self.link_layers[row["layer"]]

self.log.info(
"Link from %s to %s %s meter"
% (from_location, to_location, row["length"])
)

length = row["length"] * unit.meter
if "updowns" in row and row["updowns"] is not None:
length += int(row["updowns"]) * self.UPDOWN_LENGTH
Expand Down

0 comments on commit 0ad959f

Please sign in to comment.