Skip to content

Commit

Permalink
Bug 1110039 - Part 2.1 - Add logger facility. r=roc
Browse files Browse the repository at this point in the history
  • Loading branch information
aethanyc committed Apr 23, 2015
1 parent 4d2a9a0 commit bf11b21
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
27 changes: 27 additions & 0 deletions layout/base/AccessibleCaretLogger.cpp
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
40 changes: 40 additions & 0 deletions layout/base/AccessibleCaretLogger.h
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

0 comments on commit bf11b21

Please sign in to comment.