Skip to content

Commit 8b48679

Browse files
authored
Merge pull request #1295 from kernelkit/fix-log-warning
statd: reduce log warning to debug
2 parents cd0a5f3 + 51f289a commit 8b48679

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/statd/python/yanger/infix_firewall.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ def get_interface(interface="org.fedoraproject.FirewallD1"):
1919
return dbus.Interface(obj, dbus_interface=interface)
2020

2121
except dbus.exceptions.DBusException as e:
22-
common.LOG.warning("Failed to connect to firewalld D-Bus: %s", e)
22+
# Firewall service may not be running, this is not an error
23+
common.LOG.debug("Firewalld not available: %s", e)
2324
return None
2425

2526

0 commit comments

Comments
 (0)