CacheLog.cpp (609B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 #include "CacheLog.h" 6 7 namespace mozilla::net { 8 9 // Log module for cache2 (2013) cache implementation logging... 10 // 11 // To enable logging (see prlog.h for full details): 12 // 13 // set MOZ_LOG=cache2:5 14 // set MOZ_LOG_FILE=network.log 15 // 16 // This enables LogLevel::Debug level information and places all output in 17 // the file network.log. 18 LazyLogModule gCache2Log("cache2"); 19 20 } // namespace mozilla::net