From 34c5fe9c5b57206e08cd4932b12a4583a0b50483 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Tue, 29 Mar 2022 22:42:16 -0400 Subject: [PATCH] Increase verbosity --- op25Handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op25Handler.py b/op25Handler.py index a1f31de..d59b3e9 100644 --- a/op25Handler.py +++ b/op25Handler.py @@ -62,7 +62,7 @@ class OP25Handler(threading.Thread): self.logger.info(f"Starting OP25") # Change the interpreter's working directory (idr why) if self.HTTP_ENABLED: - p25_kwargs.extend(["-l", "http:0.0.0.0:8080"]) + p25_kwargs.extend(["-v", "5", "-l", "http:0.0.0.0:8080"]) self.logger.debug(f"OP25 Keyword Args: {p25_kwargs}")