如何在运行时使用Chrome登录到控制台?

时间:2019-06-27 15:11:32

标签: c++ debugging logging chromium

当在浏览器中使用功能Document :: CreateElementForBinding时,我尝试在运行时将消息记录到控制台中,但它不起作用。我尝试过

PLOG(ERROR) << "Document::CreateElementForBinding()";
LOG(INFO) << "Document::CreateElementForBinding()";
DLOG(INFO) << "Document::CreateElementForBinding()";
VLOG(1) << "Document::CreateElementForBinding()";
DPLOG(ERROR) << "Document::CreateElementForBinding()";

并且我也使用printf和cout进行了测试,但是即使我使用了--enable-logging --v = 1标志并且它已经将is_debug参数设置为true时,我也无法正常工作。

0 个答案:

没有答案