diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-12-14 09:05:02 +0200 |
|---|---|---|
| committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-12-14 09:05:02 +0200 |
| commit | 204508433dbc25c19af9fb7f62e0b90c507fd4e2 (patch) | |
| tree | 8a8e66d8956c5fcf34aa50eb2c715fcc8c2de631 /tools/frr-reload.py | |
| parent | ec1e9f4ba274ad3e0311e4cfe9ffb68a677a11b9 (diff) | |
tools: Use error log level when failing to execute commands via frr-reload.py
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'tools/frr-reload.py')
| -rwxr-xr-x | tools/frr-reload.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/frr-reload.py b/tools/frr-reload.py index ba2d54c963..73479c634b 100755 --- a/tools/frr-reload.py +++ b/tools/frr-reload.py @@ -2200,7 +2200,7 @@ if __name__ == "__main__": # '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: |
