forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1110039 - Part 2.1 - Add logger facility. r=roc
- Loading branch information
Showing
2 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* -*- 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/. */ | ||
|
||
#include "AccessibleCaretLogger.h" | ||
|
||
namespace mozilla { | ||
|
||
#ifdef PR_LOGGING | ||
|
||
PRLogModuleInfo* | ||
GetAccessibleCaretLog() | ||
{ | ||
static PRLogModuleInfo* log = nullptr; | ||
|
||
if (!log) { | ||
log = PR_NewLogModule("AccessibleCaret"); | ||
} | ||
|
||
return log; | ||
} | ||
|
||
#endif // PR_LOGGING | ||
|
||
} // namespace mozilla |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* -*- 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 AccessibleCaretLog_h | ||
#define AccessibleCaretLog_h | ||
|
||
#include "prlog.h" | ||
|
||
namespace mozilla { | ||
#ifdef PR_LOGGING | ||
|
||
PRLogModuleInfo* GetAccessibleCaretLog(); | ||
|
||
#ifndef AC_LOG_BASE | ||
#define AC_LOG_BASE(...) PR_LOG(GetAccessibleCaretLog(), PR_LOG_DEBUG, (__VA_ARGS__)); | ||
#endif | ||
|
||
#ifndef AC_LOGV_BASE | ||
#define AC_LOGV_BASE(...) \ | ||
PR_LOG(GetAccessibleCaretLog(), PR_LOG_DEBUG + 1, (__VA_ARGS__)); | ||
#endif | ||
|
||
#else | ||
|
||
#ifndef AC_LOGV_BASE | ||
#define AC_LOGV_BASE(...) | ||
#endif | ||
|
||
#ifndef AC_LOGV_BASE | ||
#define AC_LOGV_BASE(...) | ||
#endif | ||
|
||
#endif // PR_LOGGING | ||
|
||
} // namespace mozilla | ||
|
||
#endif // AccessibleCaretLog_h |