We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cdc54f commit 7cb50cfCopy full SHA for 7cb50cf
3 files changed
.gitignore
@@ -1,2 +1,3 @@
1
cef3-trunk
2
svn-win32-1.8.5
3
+cefpython.wiki
cefpython/cef3/subprocess/cefpython_app.cpp
@@ -43,7 +43,13 @@ void CefPythonApp::OnBeforeCommandLineProcessing(
43
App_OnBeforeCommandLineProcessing_BrowserProcess(command_line);
44
}
45
#endif
46
- std::string logMessage = "Command line: ";
+ std::string process_name = process_type.ToString();
47
+ if (process_name.empty()) {
48
+ process_name = "browser";
49
+ }
50
+ std::string logMessage = "Command line string for the ";
51
+ logMessage.append(process_name);
52
+ logMessage.append(" process: ");
53
std::string clString = command_line->GetCommandLineString().ToString();
54
logMessage.append(clString.c_str());
55
// OnBeforeCommandLineProcessing() is called before
cefpython/wiki
0 commit comments