You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I have created a console application using CEF that was built for debug (NDEBUG is not defined).
The DLOG(INFO) << "Log Message" code no longer displays any message in console window. It was working in 124.
DLOG(ERROR) << "Log Message" still displays the message in console.
The CefSettings.log_severity is set to cef_log_severity_t::LOGSEVERITY_INFO which should allow DLOG(INFO) to display.
A debug.log file is created and it contains some information but not my info message. The messages from debug.log file are not displayed in console window.
Is there any option to restore the behavior from 124?
Versions (please complete the following information):
OS: Windows 10
CEF Version: 132
The text was updated successfully, but these errors were encountered:
Oddly some INFO and WARNING logs do make it into debug.log, but at least I can get everything (INFO and WARNING) in stderr and stdout, based on the information in that link above. I still don't understand the inconsistency between the two now.
Thanks @cztomczak and @magreenblatt, the issue is likely related to the timing of CEF initialization as you note. I'll keep an eye out and share any additional insights if I find them.
Describe the bug
I have created a console application using CEF that was built for debug (NDEBUG is not defined).
The DLOG(INFO) << "Log Message" code no longer displays any message in console window. It was working in 124.
DLOG(ERROR) << "Log Message" still displays the message in console.
The CefSettings.log_severity is set to cef_log_severity_t::LOGSEVERITY_INFO which should allow DLOG(INFO) to display.
A debug.log file is created and it contains some information but not my info message. The messages from debug.log file are not displayed in console window.
Is there any option to restore the behavior from 124?
Versions (please complete the following information):
The text was updated successfully, but these errors were encountered: