2012-10-03 23:51:23 +00:00
|
|
|
/* -*- 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/. */
|
|
|
|
|
|
|
|
#ifndef DataChannelLog_h
|
|
|
|
#define DataChannelLog_h
|
|
|
|
|
|
|
|
#include "base/basictypes.h"
|
2015-05-19 18:15:34 +00:00
|
|
|
#include "mozilla/Logging.h"
|
2012-10-03 23:51:23 +00:00
|
|
|
|
2012-10-29 23:32:10 +00:00
|
|
|
extern PRLogModuleInfo* GetDataChannelLog();
|
2013-01-29 07:46:26 +00:00
|
|
|
extern PRLogModuleInfo* GetSCTPLog();
|
2012-10-03 23:51:23 +00:00
|
|
|
|
|
|
|
#undef LOG
|
2015-06-02 00:57:58 +00:00
|
|
|
#define LOG(args) MOZ_LOG(GetDataChannelLog(), PR_LOG_DEBUG, args)
|
2012-10-03 23:51:23 +00:00
|
|
|
|
|
|
|
#endif
|