From 024177b0c7c93207013ab42f8a8000417773373b Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Thu, 6 Apr 2023 05:18:05 -0400 Subject: [PATCH] Update __main__.py --- src/gam/__main__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gam/__main__.py b/src/gam/__main__.py index 869ece56..853ea01f 100644 --- a/src/gam/__main__.py +++ b/src/gam/__main__.py @@ -21,7 +21,6 @@ With GAM you can programmatically create users, turn on/off services for users l For more information, see https://jaylee.us/gam """ -import logging import sys # Note that this file (and only this file) should remain compatible @@ -50,7 +49,6 @@ def main(): from multiprocessing import set_start_method set_start_method('fork') import gam - logging.basicConfig(stream=sys.stdout, level=logging.DEBUG) sys.exit(gam.ProcessGAMCommand(sys.argv))