2013-09-20 13:11:25 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "CacheLog.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace net {
|
|
|
|
|
|
|
|
// Log module for cache2 (2013) cache implementation logging...
|
|
|
|
//
|
|
|
|
// To enable logging (see prlog.h for full details):
|
|
|
|
//
|
2016-05-26 02:13:54 +03:00
|
|
|
// set MOZ_LOG=cache2:5
|
|
|
|
// set MOZ_LOG_FILE=network.log
|
2013-09-20 13:11:25 +04:00
|
|
|
//
|
2016-05-26 02:13:54 +03:00
|
|
|
// This enables LogLevel::Debug level information and places all output in
|
|
|
|
// the file network.log.
|
2015-11-03 07:35:29 +03:00
|
|
|
LazyLogModule gCache2Log("cache2");
|
2013-09-20 13:11:25 +04:00
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace net
|
|
|
|
} // namespace mozilla
|