public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/3] unbound-dhcp-leases-bridge: Improve logging
@ 2022-03-29 11:34 Michael Tremer
  2022-03-29 11:34 ` [PATCH 2/3] unbound-dhcp-leases-bridge: Fix inotify handling Michael Tremer
  2022-03-29 11:34 ` [PATCH 3/3] unbound-dhcp-leases-bridge: Read configuration only once Michael Tremer
  0 siblings, 2 replies; 3+ messages in thread
From: Michael Tremer @ 2022-03-29 11:34 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 2210 bytes --]

This improves logging and enables logging to the console.

Suggested-by: Anthony Heading <ajrh(a)ajrh.net>
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 config/unbound/unbound-dhcp-leases-bridge | 26 ++++++++++++++++-------
 1 file changed, 18 insertions(+), 8 deletions(-)

diff --git a/config/unbound/unbound-dhcp-leases-bridge b/config/unbound/unbound-dhcp-leases-bridge
index a2df5f101..ce0cb8614 100644
--- a/config/unbound/unbound-dhcp-leases-bridge
+++ b/config/unbound/unbound-dhcp-leases-bridge
@@ -30,27 +30,37 @@ import re
 import signal
 import stat
 import subprocess
+import sys
 import tempfile
 
 import inotify.adapters
 
 LOCAL_TTL = 60
 
-def setup_logging(loglevel=logging.INFO):
-	log = logging.getLogger("dhcp")
+log = logging.getLogger("dhcp")
+log.setLevel(logging.DEBUG)
+
+def setup_logging(daemon=True, loglevel=logging.INFO):
 	log.setLevel(loglevel)
 
+	# Log to syslog by default
 	handler = logging.handlers.SysLogHandler(address="/dev/log", facility="daemon")
-	handler.setLevel(loglevel)
+	log.addHandler(handler)
 
+	# Format everything
 	formatter = logging.Formatter("%(name)s[%(process)d]: %(message)s")
 	handler.setFormatter(formatter)
 
-	log.addHandler(handler)
+	handler.setLevel(loglevel)
 
-	return log
+	# If we are running in foreground, we should write everything to the console, too
+	if not daemon:
+		handler = logging.StreamHandler()
+		log.addHandler(handler)
 
-log = logging.getLogger("dhcp")
+		handler.setLevel(loglevel)
+
+	return log
 
 def ip_address_to_reverse_pointer(address):
 	parts = address.split(".")
@@ -579,12 +589,12 @@ if __name__ == "__main__":
 		elif args.verbose >= 2:
 			loglevel = logging.DEBUG
 
-	setup_logging(loglevel)
+	setup_logging(daemon=args.daemon, loglevel=loglevel)
 
 	bridge = UnboundDHCPLeasesBridge(args.dhcp_leases, args.fix_leases,
 		args.unbound_leases, args.hosts)
 
-	ctx = daemon.DaemonContext(detach_process=args.daemon)
+	ctx = daemon.DaemonContext(detach_process=args.daemon, stderr=sys.stderr)
 	ctx.signal_map = {
 		signal.SIGHUP  : bridge.update_dhcp_leases,
 		signal.SIGTERM : bridge.terminate,
-- 
2.30.2


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-03-29 11:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-29 11:34 [PATCH 1/3] unbound-dhcp-leases-bridge: Improve logging Michael Tremer
2022-03-29 11:34 ` [PATCH 2/3] unbound-dhcp-leases-bridge: Fix inotify handling Michael Tremer
2022-03-29 11:34 ` [PATCH 3/3] unbound-dhcp-leases-bridge: Read configuration only once Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox