gecko-dev/media/mtransport/logging.h

39 lines
1.4 KiB
C
Raw Normal View History

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=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/. */
// Original author: ekr@rtfm.com
#ifndef logging_h__
#define logging_h__
#include <sstream>
#include "mozilla/Logging.h"
#define ML_ERROR PR_LOG_ERROR
#define ML_WARNING PR_LOG_WARNING
#define ML_NOTICE PR_LOG_INFO
#define ML_INFO PR_LOG_DEBUG
#define ML_DEBUG PR_LOG_VERBOSE
#define MOZ_MTLOG_MODULE(n) \
static PRLogModuleInfo* getLogModule() { \
static PRLogModuleInfo* log; \
if (!log) \
log = PR_NewLogModule(n); \
return log; \
}
#define MOZ_MTLOG(level, b) \
do { \
if (MOZ_LOG_TEST(getLogModule(), level)) { \
std::stringstream str; \
str << b; \
MOZ_LOG(getLogModule(), level, ("%s", str.str().c_str())); \
} \
} while(0)
#endif // logging_h__