cambiato livello debug

master
Emanuele Trabattoni 2019-10-01 10:13:29 +02:00
parent 949c6412d9
commit 3c726a8937
2 changed files with 22 additions and 23 deletions

42
.gitignore vendored
View File

@ -1,21 +1,21 @@
# Eclipse user settings directory
.project
.pydevproject
.settings
# VS Codium user settings directory
.vscode
# Byte-compiled / optimized / DLL files
MkpWIFI/__pycache__/
MkpWIFI/build/
MkpWIFI/dist/
MkpWIFI/main.spec
MkpWIFI/*.dll
__pycache__/
*.py[cod]
log
__pycache__
build
dist
main.spec
# Eclipse user settings directory
.project
.pydevproject
.settings
# VS Codium user settings directory
.vscode
# Byte-compiled / optimized / DLL files
MkpWIFI/__pycache__/
MkpWIFI/build/
MkpWIFI/dist/
MkpWIFI/main.spec
MkpWIFI/*.dll
__pycache__/
*.py[cod]
log
__pycache__
build
dist
main.spec

View File

@ -73,7 +73,7 @@ def subChars(s):
if __name__ == '__main__':
# Setup Logger
LOGGER = logging.getLogger(__name__)
LOGGER.setLevel(logging.DEBUG)
LOGGER.setLevel(logging.INFO)
LOGGER.propagate = False
FORMATTER = logging.Formatter(("%(asctime)s|%(levelname)-7s|%(funcName)-10s|%(lineno)-3d: %(message)-50s"),
("%m-%d %H:%M:%S"))
@ -89,6 +89,5 @@ if __name__ == '__main__':
LOGGER.addHandler(cl)
LOGGER.warning("MarcaturaDime Started!")
sys.exit(main())
pass