File tree 4 files changed +8
-2
lines changed
4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -314,7 +314,6 @@ Accepted values - constants available in the cefpython module:
314
314
* LOGSEVERITY_INFO
315
315
* LOGSEVERITY_WARNING
316
316
* LOGSEVERITY_ERROR (default)
317
- * LOGSEVERITY_ERROR_REPORT
318
317
* LOGSEVERITY_DISABLE
319
318
320
319
Original file line number Diff line number Diff line change @@ -71,7 +71,8 @@ NEW FEATURES
71
71
------------
72
72
73
73
internal/cef_types.h
74
- - cef_log_severity_t: new key LOGSEVERITY_DEBUG
74
+ + cef_log_severity_t: new key LOGSEVERITY_DEBUG (no need to expose,
75
+ same as LOGSEVERITY_VERBOSE, see code comments in setting.pyx
75
76
- cef_settings_t:
76
77
- background_color: OSR windows can set an ARGB background color
77
78
- cef_path_key_t (informational only):
Original file line number Diff line number Diff line change @@ -115,6 +115,7 @@ cdef extern from "include/internal/cef_types.h":
115
115
ctypedef enum cef_log_severity_t:
116
116
LOGSEVERITY_DEFAULT,
117
117
LOGSEVERITY_VERBOSE,
118
+ LOGSEVERITY_DEBUG = LOGSEVERITY_VERBOSE,
118
119
LOGSEVERITY_INFO,
119
120
LOGSEVERITY_WARNING,
120
121
LOGSEVERITY_ERROR,
Original file line number Diff line number Diff line change @@ -12,6 +12,11 @@ cimport cef_types
12
12
13
13
LOGSEVERITY_DEFAULT = cef_types.LOGSEVERITY_DEFAULT
14
14
LOGSEVERITY_VERBOSE = cef_types.LOGSEVERITY_VERBOSE
15
+ # LOGSEVERITY_DEBUG is not exposed, as it is the same
16
+ # as LOGSEVERITY_VERBOSE, and because it would be confusing
17
+ # as currently passing --debug arg to app causes it to
18
+ # set logseverity to LOGSEVERITY_INFO. Verbose logseverity
19
+ # contains too much information.
15
20
LOGSEVERITY_INFO = cef_types.LOGSEVERITY_INFO
16
21
LOGSEVERITY_WARNING = cef_types.LOGSEVERITY_WARNING
17
22
LOGSEVERITY_ERROR = cef_types.LOGSEVERITY_ERROR
You can’t perform that action at this time.
0 commit comments