File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -314,7 +314,6 @@ Accepted values - constants available in the cefpython module:
314314* LOGSEVERITY_INFO
315315* LOGSEVERITY_WARNING
316316* LOGSEVERITY_ERROR (default)
317- * LOGSEVERITY_ERROR_REPORT
318317* LOGSEVERITY_DISABLE
319318
320319
Original file line number Diff line number Diff line change @@ -71,7 +71,8 @@ NEW FEATURES
7171------------
7272
7373internal/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
7576- cef_settings_t:
7677 - background_color: OSR windows can set an ARGB background color
7778- 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":
115115 ctypedef enum cef_log_severity_t:
116116 LOGSEVERITY_DEFAULT,
117117 LOGSEVERITY_VERBOSE,
118+ LOGSEVERITY_DEBUG = LOGSEVERITY_VERBOSE,
118119 LOGSEVERITY_INFO,
119120 LOGSEVERITY_WARNING,
120121 LOGSEVERITY_ERROR,
Original file line number Diff line number Diff line change @@ -12,6 +12,11 @@ cimport cef_types
1212
1313LOGSEVERITY_DEFAULT = cef_types.LOGSEVERITY_DEFAULT
1414LOGSEVERITY_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.
1520LOGSEVERITY_INFO = cef_types.LOGSEVERITY_INFO
1621LOGSEVERITY_WARNING = cef_types.LOGSEVERITY_WARNING
1722LOGSEVERITY_ERROR = cef_types.LOGSEVERITY_ERROR
You can’t perform that action at this time.
0 commit comments