ESS_GUIESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalc
Last change
on this file since 30e0be0 was
e4335ae,
checked in by Piotr Rozyczko <piotr.rozyczko@…>, 6 years ago
|
SASVIEW-957 logging changes (#158)
- rework XStream to continue to write to stdout/stderr alongside redirection; make logging level setting consistent; make log configuration more consistent
- rm XStream; QT signal in QtHandler? logging handler; only logs in Log Explorer (no stdout/stderr)
- no need to change handler level
- use QTextBrowser.append to facilitate auto-scrolling in the Log Explorer
- modify logger unit test to reflect changes (passes)
|
-
Property mode set to
100644
|
File size:
1.7 KB
|
Line | |
---|
1 | |
---|
2 | ############################################################################### |
---|
3 | ################################### LOGGING ################################### |
---|
4 | ############################################################################### |
---|
5 | # Main logger for SASView |
---|
6 | |
---|
7 | # SEE: https://docs.python.org/2/library/logging.html#logrecord-attributes |
---|
8 | [formatters] |
---|
9 | keys=simple,detailed |
---|
10 | |
---|
11 | [formatter_simple] |
---|
12 | #format=%(asctime)s - %(name)s - %(levelname)s - %(message)s |
---|
13 | #format=%(asctime)s - %(levelname)s : %(name)s:%(pathname)s:%(lineno)4d: %(message)s |
---|
14 | #format=%(asctime)s - %(levelname)s : %(name)s:%(lineno)4d: %(message)s |
---|
15 | format=%(asctime)s - %(levelname)s: %(message)s |
---|
16 | datefmt=%H:%M:%S |
---|
17 | |
---|
18 | [formatter_detailed] |
---|
19 | #format=%(asctime)s : %(levelname)s : %(name)s: %(lineno)d: %(message)s |
---|
20 | format=%(asctime)s : %(levelname)s : %(name)s (%(filename)s:%(lineno)s) :: %(message)s |
---|
21 | |
---|
22 | ############################################################################### |
---|
23 | # Handlers |
---|
24 | |
---|
25 | [handlers] |
---|
26 | keys=console,log_file |
---|
27 | |
---|
28 | [handler_console] |
---|
29 | class=logging.StreamHandler |
---|
30 | formatter=simple |
---|
31 | level=WARNING |
---|
32 | args=tuple() |
---|
33 | |
---|
34 | [handler_log_file] |
---|
35 | class=logging.FileHandler |
---|
36 | level=DEBUG |
---|
37 | formatter=detailed |
---|
38 | args=(os.path.join(os.path.expanduser("~"),'sasview.log'),"a") |
---|
39 | |
---|
40 | ############################################################################### |
---|
41 | # Loggers |
---|
42 | |
---|
43 | [loggers] |
---|
44 | keys=root,saspr,sasgui,sascalc,sasmodels |
---|
45 | |
---|
46 | [logger_root] |
---|
47 | level=DEBUG |
---|
48 | formatter=default |
---|
49 | handlers=console,log_file |
---|
50 | |
---|
51 | [logger_sasmodels] |
---|
52 | level=INFO |
---|
53 | qualname=sas.models |
---|
54 | handlers=console,log_file |
---|
55 | propagate=0 |
---|
56 | |
---|
57 | [logger_saspr] |
---|
58 | level=INFO |
---|
59 | qualname=sas.pr |
---|
60 | handlers=console,log_file |
---|
61 | propagate=0 |
---|
62 | |
---|
63 | [logger_sasgui] |
---|
64 | level=DEBUG |
---|
65 | qualname=sas.sasgui |
---|
66 | handlers=console,log_file |
---|
67 | propagate=0 |
---|
68 | |
---|
69 | [logger_sascalc] |
---|
70 | level=INFO |
---|
71 | qualname=sas.sascalc |
---|
72 | handlers=console,log_file |
---|
73 | propagate=0 |
---|
74 | |
---|
Note: See
TracBrowser
for help on using the repository browser.