mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-09 05:14:24 +00:00
445e1466e9
Backed out changeset 009ae35b0c67 (bug 806819) Backed out changeset 5a57f87f5061 (bug 806819) Backed out changeset f06cd735b5b3 (bug 806819) Backed out changeset e25a2a8d4af4 (bug 806819) Backed out changeset 70a167982c3f (bug 806819)
32 lines
672 B
C++
32 lines
672 B
C++
/* 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/. */
|
|
|
|
#ifndef Cache2Log__h__
|
|
#define Cache2Log__h__
|
|
|
|
#if defined(MOZ_LOGGING)
|
|
#define FORCE_PR_LOG
|
|
#endif
|
|
|
|
#if defined(PR_LOG)
|
|
#error "If nsCache.h #included it must come before any files that #include prlog.h"
|
|
#endif
|
|
|
|
#include "prlog.h"
|
|
|
|
namespace mozilla {
|
|
namespace net {
|
|
|
|
#if defined(PR_LOGGING)
|
|
extern PRLogModuleInfo* GetCache2Log();
|
|
#define LOG(x) PR_LOG(GetCache2Log(), PR_LOG_DEBUG, x)
|
|
#else
|
|
#define LOG(x)
|
|
#endif /* PR_LOGGING */
|
|
|
|
} // net
|
|
} // mozilla
|
|
|
|
#endif
|