Bug 1866777 - Disable test_race_cache_with_network.js on windows opt for frequent...
[gecko.git] / netwerk / cache2 / CacheLog.h
blobf4117ea4f7c092049a939d76aff0a41a72cd55c2
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/. */
5 #ifndef Cache2Log__h__
6 #define Cache2Log__h__
8 #include "mozilla/Logging.h"
10 namespace mozilla {
11 namespace net {
13 extern LazyLogModule gCache2Log;
14 #define LOG(x) MOZ_LOG(gCache2Log, mozilla::LogLevel::Debug, x)
15 #define LOG_ENABLED() MOZ_LOG_TEST(gCache2Log, mozilla::LogLevel::Debug)
17 } // namespace net
18 } // namespace mozilla
20 #endif