diff options
Diffstat (limited to 'net/disk_cache')
-rw-r--r-- | net/disk_cache/stress_cache.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/disk_cache/stress_cache.cc b/net/disk_cache/stress_cache.cc index 65eb01a..0da9845 100644 --- a/net/disk_cache/stress_cache.cc +++ b/net/disk_cache/stress_cache.cc @@ -270,9 +270,9 @@ int main(int argc, const char* argv[]) { logging::LogEventProvider::Initialize(kStressCacheTraceProviderName); #else CommandLine::Init(argc, argv); - logging::InitLogging(NULL, logging::LOG_ONLY_TO_SYSTEM_DEBUG_LOG, - logging::LOCK_LOG_FILE, logging::DELETE_OLD_LOG_FILE, - logging::DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS); + logging::LoggingSettings settings; + settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG; + logging::InitLogging(settings); #endif // Some time for the memory manager to flush stuff. |