Browse Source

Minor FMT adaptions

master
Dirk Alders 5 months ago
parent
commit
7003c13ef8
1 changed files with 2 additions and 3 deletions
  1. 2
    3
      __init__.py

+ 2
- 3
__init__.py View File

47
 __INTERPRETER__ = (3, )
47
 __INTERPRETER__ = (3, )
48
 """The Tested Interpreter-Versions"""
48
 """The Tested Interpreter-Versions"""
49
 
49
 
50
-SHORT_FMT = "%(asctime)s: %(name)s - %(levelname)s - %(message)s"
50
+SHORT_FMT = "%(asctime)s: %(levelname)8s - %(name)s - %(message)s"
51
 """ A short formatter including the most important information"""
51
 """ A short formatter including the most important information"""
52
-LONG_FMT = SHORT_FMT + \
53
-    "\n                         File \"%(pathname)s\", line %(lineno)d, in %(funcName)s"
52
+LONG_FMT = SHORT_FMT + "\n                                    File \"%(pathname)s\", line %(lineno)d, in %(funcName)s"
54
 """ A long formatter which results in links to the source code inside Eclipse"""
53
 """ A long formatter which results in links to the source code inside Eclipse"""
55
 MAX_FMT = """
54
 MAX_FMT = """
56
 %(name)s
55
 %(name)s

Loading…
Cancel
Save