mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 22:32:46 +00:00
Bug 1165518 - Part 1: Add Logging.h. r=froydnj
This commit is contained in:
parent
3d793b2dac
commit
c60f772f62
20
xpcom/glue/Logging.h
Normal file
20
xpcom/glue/Logging.h
Normal 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
|
||||
|
@ -75,6 +75,7 @@ EXPORTS.mozilla += [
|
||||
'FileUtils.h',
|
||||
'GenericFactory.h',
|
||||
'IntentionalCrash.h',
|
||||
'Logging.h',
|
||||
'Monitor.h',
|
||||
'Mutex.h',
|
||||
'Observer.h',
|
||||
|
Loading…
Reference in New Issue
Block a user