VirtualBox

source: vbox/trunk/src/VBox/Main/include/Logging.h@ 39493

Last change on this file since 39493 was 38037, checked in by vboxsync, 13 years ago

eliminate use of LOG_ENABLED

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
Line 
1/* $Id: Logging.h 38037 2011-07-18 17:31:38Z vboxsync $ */
2
3/** @file
4 *
5 * VirtualBox COM: logging macros and function definitions
6 */
7
8/*
9 * Copyright (C) 2006-2011 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
44#include <VBox/log.h>
45
46int VBoxSVCLogRelCreate(const char *pszLogFile, uint32_t cHistory,
47 uint32_t uHistoryFileTime, uint64_t uHistoryFileSize);
48
49#endif // ____H_LOGGING
50/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette