devsisters/libquic

how to enable all the debug, for example : LOG DLOG VLOG PLOG DPLOG

Closed this issue · 2 comments

@serialx

I want to enable all the debug, what I should do?

thanks.

I write a test code, as following:

logging::SetMinLogLevel(0);
logging::LoggingSettings *logset = new logging::LoggingSettings("./quic.log");
logging::InitLogging(*logset);

PLOG(ERROR) << "yang test plog: ";
DVLOG(1) << "yang add test dvlog";

PLOG can printf the log that I want, but DVLOG do not printf log, why ??

thanks

I do not know the specifics about Chromium logging infrastructure. Please consult Chromium documents and mailing list.