Have anyone known where is the output of console.log in the InspectorBackend.js of devtools code. I found the console panel in the chrome have no any output.
for example, I have set dumpInspectorProtocolMessages = true, and and also add console.error in the function _wrapCallbackAndSendMessageObject as following:
console.error("show error on console");
if (this.dumpInspectorProtocolMessages)
console.log("frontend: " + JSON.stringify(messageObject));
I think the console panel in the chrome was loaded after above function, so where is the output, how to check it?
Btw, the function above is devtools source code, and what i want to see is the log output of devtools source code.
thanks