We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27f45b9 commit 79a51c2Copy full SHA for 79a51c2
process_watch.py
@@ -2,8 +2,8 @@
2
import sys
3
import time
4
import logging
5
-import importlib
6
import psutil
+import importlib
7
8
sys.dont_write_bytecode = True
9
sys.path.append('watch_list')
@@ -14,10 +14,8 @@
14
15
logging.basicConfig(
16
handlers = [logging.FileHandler(log_file), logging.StreamHandler()],
17
- #filename=log_file,
18
level=logging.INFO,
19
format='%(asctime)s - %(levelname)s - %(message)s',
20
- #stream=sys.stdout,
21
)
22
23
# Dynamic Import of Modules in Watch List Directory
0 commit comments