summaryrefslogtreecommitdiffstats
path: root/netwerk/test/NetwerkTestLogging.h
blob: 68e955fd3943d7c435a7b205aa8a4717546e3ce4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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 NetwerkTestLogging_h
#define NetwerkTestLogging_h

#include "mozilla/Logging.h"

// The netwerk standalone cpp unit tests will just use PR_LogPrint as they don't
// have access to mozilla::detail::log_print. To support that MOZ_LOG is
// redefined.
#undef MOZ_LOG
#define MOZ_LOG(_module,_level,_args) \
  PR_BEGIN_MACRO \
    if (MOZ_LOG_TEST(_module,_level)) { \
      PR_LogPrint _args; \
    } \
  PR_END_MACRO

#endif