Skip to content

Commit

Permalink
changed tap invalid format logging level to debug (instead of warning)
Browse files Browse the repository at this point in the history
  • Loading branch information
vkotronis committed Mar 25, 2021
1 parent 28166db commit 8c69eb8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 9 deletions.
1 change: 1 addition & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- upgraded artemis-utils to 1.0.10 to include the slacker-log-handler==1.7.1 dep
- migrating from travis to GH actions
- downgraded to six==1.11.0 to achieve compatibility
- changed tap invalid format logging level to debug (instead of warning)

### Fixed
- autoconfiguration subprefix bug in prefixtree plus new autoconf tests
Expand Down
2 changes: 1 addition & 1 deletion monitor-services/bgpstreamhisttap/core/bgpstreamhist.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ def run(self):
)
time.sleep(0.01)
else:
log.warning(
log.debug(
"Invalid format message: {}".format(msg)
)
except BaseException:
Expand Down
4 changes: 1 addition & 3 deletions monitor-services/bgpstreamkafkatap/core/bgpstreamkafka.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,9 +526,7 @@ def run(self):
serializer="ujson",
)
else:
log.warning(
"Invalid format message: {}".format(msg)
)
log.debug("Invalid format message: {}".format(msg))
except BaseException:
log.exception(
"Error when normalizing BGP message: {}".format(msg)
Expand Down
4 changes: 1 addition & 3 deletions monitor-services/bgpstreamlivetap/core/bgpstreamlive.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,9 +501,7 @@ def run(self):
serializer="ujson",
)
else:
log.warning(
"Invalid format message: {}".format(msg)
)
log.debug("Invalid format message: {}".format(msg))
except BaseException:
log.exception(
"Error when normalizing BGP message: {}".format(msg)
Expand Down
2 changes: 1 addition & 1 deletion monitor-services/exabgptap/core/exabgp_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ def handle_exabgp_msg(bgp_message):
serializer="ujson",
)
else:
log.warning("Invalid format message: {}".format(msg))
log.debug("Invalid format message: {}".format(msg))
except BaseException:
log.exception(
"Error when normalizing BGP message: {}".format(msg)
Expand Down
2 changes: 1 addition & 1 deletion monitor-services/riperistap/core/ripe_ris.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ def run(self):
serializer="ujson",
)
else:
log.warning(
log.debug(
"Invalid format message: {}".format(msg)
)
except BaseException:
Expand Down

0 comments on commit 8c69eb8

Please sign in to comment.