summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruvok2025-01-24 16:54:30 +0100
committeruvok2025-01-24 16:54:30 +0100
commit683a5f37836282ec55a223ac6a9ce79afd539c00 (patch)
tree67c9aeaf695adde8595f056162b4a80c33c15a13
parent50a6aca8888f9eb8ef00b01451b7534799e04327 (diff)
Change initial log levels
-rw-r--r--fuse-ap.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/fuse-ap.py b/fuse-ap.py
index d347405..031d107 100644
--- a/fuse-ap.py
+++ b/fuse-ap.py
@@ -90,7 +90,8 @@ def main(args):
if __name__ == "__main__":
- logging.basicConfig(level=logging.INFO)
- logger.setLevel(logging.DEBUG)
+ logging.basicConfig(level=logging.DEBUG)
+ logging.getLogger("fuse").setLevel(logging.INFO)
+ logging.getLogger("fuse.log-mixin").setLevel(logging.INFO)
args = parse_arguments()
main(args)