Bug 1165518 - Part 1: Add Logging.h. r=froydnj

This commit is contained in:
Eric Rahm 2015-05-19 11:15:32 -07:00
parent 3d793b2dac
commit c60f772f62
2 changed files with 21 additions and 0 deletions

20
xpcom/glue/Logging.h Normal file
View File

@ -0,0 +1,20 @@
/* -*- 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 mozilla_logging_h
#define mozilla_logging_h
#include "prlog.h"
// This file is a placeholder for a replacement to the NSPR logging framework
// that is defined in prlog.h. Currently it is just a pass through, but as
// work progresses more functionality will be swapped out in favor of
// mozilla logging implementations.
#define MOZ_LOG PR_LOG
#endif // mozilla_logging_h

View File

@ -75,6 +75,7 @@ EXPORTS.mozilla += [
'FileUtils.h',
'GenericFactory.h',
'IntentionalCrash.h',
'Logging.h',
'Monitor.h',
'Mutex.h',
'Observer.h',