Browse Source

moved bee_logging.yaml into the project folder and fixed resulting issues

digital 7 years ago
parent
commit
c744e1c16f
2 changed files with 2 additions and 2 deletions
  1. 1 1
      gui.py
  2. 1 1
      server.py

+ 1 - 1
gui.py

@@ -87,7 +87,7 @@ group_af_family.add_argument(
 )
 args = parser.parse_args()
 if args.debug:
-    with open("../bee_logging.yaml") as f:
+    with open("bee_logging.yaml") as f:
         data = f.read()
     config = yaml.safe_load(data)
     logging.config.dictConfig(config)

+ 1 - 1
server.py

@@ -87,7 +87,7 @@ group_af_family.add_argument(
 args = parser.parse_args()
 print(args)
 if args.debug:
-    with open("../bee_logging.yaml") as f:
+    with open("bee_logging.yaml") as f:
         data = f.read()
     config = yaml.safe_load(data)
     logging.config.dictConfig(config)