Added tag BETA_BASE_20140428 for changeset ffacfc0539ea a=betamerge DONTBUILD CLOSED TREE
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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 OutlookDebugLog_h___
#define OutlookDebugLog_h___
#ifdef NS_DEBUG
#define IMPORT_DEBUG 1
#endif
// Use PR_LOG for logging.
#include "prlog.h"
extern PRLogModuleInfo *OUTLOOKLOGMODULE; // Logging module
#define IMPORT_LOG0(x) PR_LOG(OUTLOOKLOGMODULE, PR_LOG_DEBUG, (x))
#define IMPORT_LOG1(x, y) PR_LOG(OUTLOOKLOGMODULE, PR_LOG_DEBUG, (x, y))
#define IMPORT_LOG2(x, y, z) PR_LOG(OUTLOOKLOGMODULE, PR_LOG_DEBUG, (x, y, z))
#define IMPORT_LOG3(a, b, c, d) PR_LOG(OUTLOOKLOGMODULE, PR_LOG_DEBUG, (a, b, c, d))
#endif /* OutlookDebugLog_h___ */