MCPcopy Create free account
hub / github.com/chromium/crashpad / InitCrashpadLogging

Function InitCrashpadLogging

handler/handler_main.cc:551–563  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

549};
550
551void InitCrashpadLogging() {
552 logging::LoggingSettings settings;
553#if BUILDFLAG(IS_CHROMEOS)
554 settings.logging_dest = logging::LOG_TO_FILE;
555 settings.log_file_path = "/var/log/chrome/chrome";
556#elif BUILDFLAG(IS_WIN)
557 settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG;
558#else
559 settings.logging_dest =
560 logging::LOG_TO_SYSTEM_DEBUG_LOG | logging::LOG_TO_STDERR;
561#endif
562 logging::InitLogging(settings);
563}
564
565} // namespace
566

Callers 1

HandlerMainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected