Skip to content

Commit

Permalink
tools: Use error log level when failing to execute commands via frr-r…
Browse files Browse the repository at this point in the history
…eload.py

Signed-off-by: Donatas Abraitis <[email protected]>
(cherry picked from commit 2045084)
  • Loading branch information
ton31337 authored and c-po committed Feb 7, 2024
1 parent dfc0a16 commit b1bdb55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/frr-reload.py
Original file line number Diff line number Diff line change
Expand Up @@ -2200,7 +2200,7 @@ def compare_context_objects(newconf, running):
# 'no ip ospf authentication message-digest 1.1.1.1' in
# our example above
# - Split that last entry by whitespace and drop the last word
log.info("Failed to execute %s", " ".join(cmd))
log.error("Failed to execute %s", " ".join(cmd))
last_arg = cmd[-1].split(" ")

if len(last_arg) <= 2:
Expand Down

0 comments on commit b1bdb55

Please sign in to comment.