1 | /* $Id: Logging.h 47525 2013-08-02 17:07:41Z vboxsync $ */
|
---|
2 |
|
---|
3 | /** @file
|
---|
4 | *
|
---|
5 | * VirtualBox COM: logging macros and function definitions
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * Copyright (C) 2004-2012 Oracle Corporation
|
---|
10 | *
|
---|
11 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
12 | * available from http://www.virtualbox.org. This file is free software;
|
---|
13 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
14 | * General Public License (GPL) as published by the Free Software
|
---|
15 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
16 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
17 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
18 | */
|
---|
19 |
|
---|
20 | #ifndef ____H_LOGGING
|
---|
21 | #define ____H_LOGGING
|
---|
22 |
|
---|
23 | /** @def LOG_GROUP_MAIN_OVERRIDE
|
---|
24 | * Define this macro to point to the desired log group before including
|
---|
25 | * the |Logging.h| header if you want to use a group other than LOG_GROUP_MAIN
|
---|
26 | * for logging from within Main source files.
|
---|
27 | *
|
---|
28 | * @example #define LOG_GROUP_MAIN_OVERRIDE LOG_GROUP_HGCM
|
---|
29 | */
|
---|
30 |
|
---|
31 | /*
|
---|
32 | * We might be including the VBox logging subsystem before
|
---|
33 | * including this header file, so reset the logging group.
|
---|
34 | */
|
---|
35 | #ifdef LOG_GROUP
|
---|
36 | # undef LOG_GROUP
|
---|
37 | #endif
|
---|
38 | #ifdef LOG_GROUP_MAIN_OVERRIDE
|
---|
39 | # define LOG_GROUP LOG_GROUP_MAIN_OVERRIDE
|
---|
40 | #else
|
---|
41 | # define LOG_GROUP LOG_GROUP_MAIN
|
---|
42 | #endif
|
---|
43 | #ifndef VBOXSVC_LOG_DEFAULT
|
---|
44 | # define VBOXSVC_LOG_DEFAULT "all"
|
---|
45 | #endif
|
---|
46 |
|
---|
47 | #include <VBox/log.h>
|
---|
48 |
|
---|
49 | #endif // ____H_LOGGING
|
---|
50 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|