mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29f00ac208
This is straightforward mapping of PR_LOG levels to their LogLevel counterparts: PR_LOG_ERROR -> LogLevel::Error PR_LOG_WARNING -> LogLevel::Warning PR_LOG_WARN -> LogLevel::Warning PR_LOG_INFO -> LogLevel::Info PR_LOG_DEBUG -> LogLevel::Debug PR_LOG_NOTICE -> LogLevel::Debug PR_LOG_VERBOSE -> LogLevel::Verbose Instances of PRLogModuleLevel were mapped to a fully qualified mozilla::LogLevel, instances of PR_LOG levels in #defines were mapped to a fully qualified mozilla::LogLevel::* level, and all other instances were mapped to us a shorter format of LogLevel::*. Bustage for usage of the non-fully qualified LogLevel were fixed by adding |using mozilla::LogLevel;| where appropriate.
53 lines
1.8 KiB
C
53 lines
1.8 KiB
C
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=40: */
|
|
/* 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 DOM_CAMERA_CAMERACOMMON_H
|
|
#define DOM_CAMERA_CAMERACOMMON_H
|
|
|
|
#ifndef __func__
|
|
#ifdef __FUNCTION__
|
|
#define __func__ __FUNCTION__
|
|
#else
|
|
#define __func__ __FILE__
|
|
#endif
|
|
#endif
|
|
|
|
#include "mozilla/Logging.h"
|
|
|
|
extern PRLogModuleInfo* GetCameraLog();
|
|
#define DOM_CAMERA_LOG( type, ... ) MOZ_LOG(GetCameraLog(), (mozilla::LogLevel)type, ( __VA_ARGS__ ))
|
|
|
|
#define DOM_CAMERA_LOGA( ... ) DOM_CAMERA_LOG( mozilla::LogLevel::Error, __VA_ARGS__ )
|
|
|
|
/**
|
|
* From the least to the most output.
|
|
*/
|
|
enum {
|
|
DOM_CAMERA_LOG_NOTHING,
|
|
DOM_CAMERA_LOG_ERROR,
|
|
DOM_CAMERA_LOG_WARNING,
|
|
DOM_CAMERA_LOG_INFO,
|
|
DOM_CAMERA_LOG_TRACE,
|
|
DOM_CAMERA_LOG_REFERENCES
|
|
};
|
|
|
|
/**
|
|
* DOM_CAMERA_LOGR() can be called before 'gCameraLog' is set, so
|
|
* we need to handle this one a little differently.
|
|
*/
|
|
#define DOM_CAMERA_LOGR( ... ) \
|
|
do { \
|
|
if (GetCameraLog()) { \
|
|
DOM_CAMERA_LOG( DOM_CAMERA_LOG_REFERENCES, __VA_ARGS__ ); \
|
|
} \
|
|
} while (0)
|
|
#define DOM_CAMERA_LOGT( ... ) DOM_CAMERA_LOG( DOM_CAMERA_LOG_TRACE, __VA_ARGS__ )
|
|
#define DOM_CAMERA_LOGI( ... ) DOM_CAMERA_LOG( DOM_CAMERA_LOG_INFO, __VA_ARGS__ )
|
|
#define DOM_CAMERA_LOGW( ... ) DOM_CAMERA_LOG( DOM_CAMERA_LOG_WARNING, __VA_ARGS__ )
|
|
#define DOM_CAMERA_LOGE( ... ) DOM_CAMERA_LOG( DOM_CAMERA_LOG_ERROR, __VA_ARGS__ )
|
|
|
|
#endif // DOM_CAMERA_CAMERACOMMON_H
|