当在浏览器中使用功能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时,我也无法正常工作。