VirtualBox

Changeset 67914 in vbox


Ignore:
Timestamp:
Jul 11, 2017 8:46:37 PM (8 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
116906
Message:

src-client: Define LOG_GROUP according to interface or similar.

Location:
trunk/src/VBox/Main
Files:
47 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/DisplayImpl.h

    r67531 r67914  
    589589};
    590590
    591 #endif // ____H_DISPLAYIMPL
     591#endif // !____H_DISPLAYIMPL
    592592/* vi: set tabstop=4 shiftwidth=4 expandtab: */
  • trunk/src/VBox/Main/include/HGCMObjects.h

    r62485 r67914  
    11/* $Id$ */
    22/** @file
    3  *
    43 * HGCMObjects - Host-Guest Communication Manager objects header.
    54 */
     
    1716 */
    1817
    19 #ifndef __HGCMOBJECTS__H
    20 #define __HGCMOBJECTS__H
    21 
    22 #define LOG_GROUP_MAIN_OVERRIDE LOG_GROUP_HGCM
    23 #include "Logging.h"
     18#ifndef ___HGCMOBJECTS__H
     19#define ___HGCMOBJECTS__H
    2420
    2521#include <iprt/assert.h>
     
    115111void     hgcmObjSetHandleCount(uint32_t u32HandleCount);
    116112
    117 #endif /* __HGCMOBJECTS__H */
     113#endif /* !___HGCMOBJECTS__H */
  • trunk/src/VBox/Main/src-client/AdditionsFacilityImpl.cpp

    r63259 r67914  
    1717 */
    1818
     19#define LOG_GROUP LOG_GROUP_MAIN_ADDITIONSFACILITY
     20#include "LoggingNew.h"
     21
    1922#include "AdditionsFacilityImpl.h"
    2023#include "Global.h"
    2124
    2225#include "AutoCaller.h"
    23 #include "Logging.h"
     26
    2427
    2528/* static */
  • trunk/src/VBox/Main/src-client/BusAssignmentManager.cpp

    r63747 r67914  
    11/* $Id$ */
    2 
    32/** @file
    4  *
    53 * VirtualBox bus slots assignment manager
    64 */
     
    1715 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
    1816 */
     17
     18#define LOG_GROUP LOG_GROUP_MAIN
     19#include "LoggingNew.h"
     20
    1921#include "BusAssignmentManager.h"
    2022
  • trunk/src/VBox/Main/src-client/ClientTokenHolder.cpp

    r63239 r67914  
    1616 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
    1717 */
     18
     19#define LOG_GROUP LOG_GROUP_MAIN_SESSION
     20#include "LoggingNew.h"
    1821
    1922#include <iprt/asm.h>
  • trunk/src/VBox/Main/src-client/ConsoleImpl.cpp

    r66870 r67914  
    1515 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
    1616 */
     17
     18#define LOG_GROUP LOG_GROUP_MAIN_CONSOLE
     19#include "LoggingNew.h"
    1720
    1821/** @todo Move the TAP mess back into the driver! */
     
    7881#include "VBoxEvents.h"
    7982#include "AutoCaller.h"
    80 #include "Logging.h"
    8183#include "ThreadTask.h"
    8284
  • trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp

    r67642 r67914  
    2525*   Header Files                                                                                                                 *
    2626*********************************************************************************************************************************/
     27#define LOG_GROUP LOG_GROUP_MAIN_CONSOLE
     28#include "LoggingNew.h"
    2729
    2830// VBoxNetCfg-win.h needs winsock2.h and thus MUST be included before any other
     
    5052
    5153#include "AutoCaller.h"
    52 #include "Logging.h"
    5354
    5455#include <iprt/base64.h>
  • trunk/src/VBox/Main/src-client/ConsoleImplTeleporter.cpp

    r65919 r67914  
    2020*   Header Files                                                                                                                 *
    2121*********************************************************************************************************************************/
     22#define LOG_GROUP LOG_GROUP_MAIN_CONSOLE
     23#include "LoggingNew.h"
     24
    2225#include "ConsoleImpl.h"
    2326#include "Global.h"
     
    2528
    2629#include "AutoCaller.h"
    27 #include "Logging.h"
    2830#include "HashedPw.h"
    2931
  • trunk/src/VBox/Main/src-client/ConsoleVRDPServer.cpp

    r65164 r67914  
    1515 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
    1616 */
     17
     18#define LOG_GROUP LOG_GROUP_MAIN_CONSOLE
     19#include "LoggingNew.h"
    1720
    1821#include "ConsoleVRDPServer.h"
     
    3538#include "Global.h"
    3639#include "AutoCaller.h"
    37 #include "Logging.h"
    3840
    3941#include <iprt/asm.h>
     
    4850#include <VBox/com/listeners.h>
    4951#include <VBox/HostServices/VBoxCrOpenGLSvc.h>
     52
    5053
    5154class VRDPConsoleListener
  • trunk/src/VBox/Main/src-client/DisplayImpl.cpp

    r67531 r67914  
    1616 */
    1717
     18#define LOG_GROUP LOG_GROUP_MAIN_DISPLAY
     19#include "LoggingNew.h"
     20
    1821#include "DisplayImpl.h"
    1922#include "DisplayUtils.h"
     
    2427
    2528#include "AutoCaller.h"
    26 #include "Logging.h"
    2729
    2830/* generated header */
  • trunk/src/VBox/Main/src-client/DisplayImplLegacy.cpp

    r67531 r67914  
    11/* $Id$ */
    22/** @file
    3  * VirtualBox IDisplay implementation
     3 * VirtualBox IDisplay implementation, helpers for legacy GAs.
    44 *
    55 * Methods and helpers to support old guest additions 3.x or older.
     
    1919 */
    2020
     21#define LOG_GROUP LOG_GROUP_MAIN_DISPLAY
     22#include "LoggingNew.h"
     23
    2124#include "DisplayImpl.h"
    2225#include "ConsoleImpl.h"
    2326#include "ConsoleVRDPServer.h"
    2427#include "VMMDev.h"
    25 
    26 #include "Logging.h"
    2728
    2829/* generated header */
  • trunk/src/VBox/Main/src-client/DisplaySourceBitmapImpl.cpp

    r63259 r67914  
    11/* $Id$ */
    22/** @file
    3  *
    43 * Bitmap of a guest screen implementation.
    54 */
     
    1716 */
    1817
     18#define LOG_GROUP LOG_GROUP_MAIN_DISPLAYSOURCEBITMAP
     19#include "LoggingNew.h"
     20
    1921#include "DisplayImpl.h"
    20 #include "Logging.h"
    2122
    2223/*
  • trunk/src/VBox/Main/src-client/DrvAudioVRDE.cpp

    r65734 r67914  
    2121*********************************************************************************************************************************/
    2222#define LOG_GROUP LOG_GROUP_DRV_HOST_AUDIO
     23#include "LoggingNew.h"
     24
    2325#include <VBox/log.h>
    2426#include "DrvAudioVRDE.h"
  • trunk/src/VBox/Main/src-client/DrvAudioVideoRec.cpp

    r66266 r67914  
    3434*********************************************************************************************************************************/
    3535#define LOG_GROUP LOG_GROUP_DRV_HOST_AUDIO
    36 #include <VBox/log.h>
     36#include "LoggingNew.h"
     37
    3738#include "DrvAudioVideoRec.h"
    3839#include "ConsoleImpl.h"
  • trunk/src/VBox/Main/src-client/EbmlWriter.cpp

    r67777 r67914  
    1616 */
    1717
     18#define LOG_GROUP LOG_GROUP_MAIN_DISPLAY
     19#include "LoggingNew.h"
    1820
    1921#include <list>
     
    3638#include "EbmlWriter.h"
    3739#include "EbmlMkvIDs.h"
    38 #include "Logging.h"
    3940
    4041
  • trunk/src/VBox/Main/src-client/EbmlWriter.h

    r65435 r67914  
    145145};
    146146
    147 #endif /* ____EBMLWRITER */
     147#endif /* !____EBMLWRITER */
  • trunk/src/VBox/Main/src-client/EmulatedUSBImpl.cpp

    r66891 r67914  
    11/* $Id$ */
    22/** @file
    3  *
    43 * Emulated USB manager implementation.
    54 */
     
    1716 */
    1817
    19 #define LOG_GROUP_MAIN_OVERRIDE LOG_GROUP_MAIN_EMULATEDUSB
     18#define LOG_GROUP LOG_GROUP_MAIN_EMULATEDUSB
     19#include "LoggingNew.h"
    2020
    2121#include "EmulatedUSBImpl.h"
    2222#include "ConsoleImpl.h"
    23 #include "Logging.h"
    2423
    2524#include <VBox/vmm/pdmusb.h>
  • trunk/src/VBox/Main/src-client/GuestCtrlImpl.cpp

    r63182 r67914  
    1515 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
    1616 */
     17
     18#define LOG_GROUP LOG_GROUP_GUEST_CONTROL
     19#include "LoggingNew.h"
    1720
    1821#include "GuestImpl.h"
     
    4447
    4548#include <memory>
    46 
    47 #ifdef LOG_GROUP
    48  #undef LOG_GROUP
    49 #endif
    50 #define LOG_GROUP LOG_GROUP_GUEST_CONTROL
    51 #include <VBox/log.h>
    5249
    5350
  • trunk/src/VBox/Main/src-client/GuestCtrlPrivate.cpp

    r66900 r67914  
    2020*   Header Files                                                                                                                 *
    2121*********************************************************************************************************************************/
     22#define LOG_GROUP LOG_GROUP_GUEST_CONTROL
     23#include "LoggingNew.h"
     24
    2225#ifndef VBOX_WITH_GUEST_CONTROL
    2326# error "VBOX_WITH_GUEST_CONTROL must defined in this file"
     
    3336# include <iprt/file.h>
    3437#endif /* DEBUG */
    35 
    36 #ifdef LOG_GROUP
    37  #undef LOG_GROUP
    38 #endif
    39 #define LOG_GROUP LOG_GROUP_GUEST_CONTROL
    40 #include <VBox/log.h>
    4138
    4239
  • trunk/src/VBox/Main/src-client/GuestDirectoryImpl.cpp

    r63259 r67914  
    2020*   Header Files                                                                                                                 *
    2121*********************************************************************************************************************************/
     22#define LOG_GROUP LOG_GROUP_GUEST_CONTROL //LOG_GROUP_MAIN_GUESTDIRECTORY
     23#include "LoggingNew.h"
     24
    2225#ifndef VBOX_WITH_GUEST_CONTROL
    2326# error "VBOX_WITH_GUEST_CONTROL must defined in this file"
     
    3134
    3235#include <VBox/com/array.h>
    33 
    34 #ifdef LOG_GROUP
    35  #undef LOG_GROUP
    36 #endif
    37 #define LOG_GROUP LOG_GROUP_GUEST_CONTROL
    38 #include <VBox/log.h>
    3936
    4037
  • trunk/src/VBox/Main/src-client/GuestDnDPrivate.cpp

    r63259 r67914  
    11/* $Id$ */
    22/** @file
    3  * Private guest drag and drop code, used by GuestDnDTarget +
    4  * GuestDnDSource.
     3 * Private guest drag and drop code, used by GuestDnDTarget + GuestDnDSource.
    54 */
    65
     
    1716 */
    1817
     18#define LOG_GROUP LOG_GROUP_GUEST_DND
     19#include "LoggingNew.h"
     20
    1921#include "GuestImpl.h"
    2022#include "AutoCaller.h"
     
    3941# include <VBox/version.h>
    4042
    41 # ifdef LOG_GROUP
    42 #  undef LOG_GROUP
    43 # endif
    44 # define LOG_GROUP LOG_GROUP_GUEST_DND
    45 # include <VBox/log.h>
    46 
    47 /**
     43/** @page pg_main_dnd  Dungeons & Dragons - Overview
    4844 * Overview:
    4945 *
  • trunk/src/VBox/Main/src-client/GuestDnDSourceImpl.cpp

    r63475 r67914  
    2020*   Header Files                                                                                                                 *
    2121*********************************************************************************************************************************/
     22#define LOG_GROUP LOG_GROUP_GUEST_DND //LOG_GROUP_MAIN_GUESTDNDSOURCE
     23#include "LoggingNew.h"
     24
    2225#include "GuestImpl.h"
    2326#include "GuestDnDSourceImpl.h"
     
    3942#include <VBox/com/array.h>
    4043
    41 #ifdef LOG_GROUP
    42  #undef LOG_GROUP
    43 #endif
    44 #define LOG_GROUP LOG_GROUP_GUEST_DND
    45 #include <VBox/log.h>
    4644
    4745/**
  • trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp

    r64978 r67914  
    2020*   Header Files                                                                                                                 *
    2121*********************************************************************************************************************************/
     22#define LOG_GROUP LOG_GROUP_GUEST_DND //LOG_GROUP_MAIN_GUESTDNDTARGET
     23#include "LoggingNew.h"
     24
    2225#include "GuestImpl.h"
    2326#include "GuestDnDTargetImpl.h"
     
    4144#include <VBox/GuestHost/DragAndDrop.h>
    4245#include <VBox/HostServices/Service.h>
    43 
    44 #ifdef LOG_GROUP
    45  #undef LOG_GROUP
    46 #endif
    47 #define LOG_GROUP LOG_GROUP_GUEST_DND
    48 #include <VBox/log.h>
    4946
    5047
  • trunk/src/VBox/Main/src-client/GuestFileImpl.cpp

    r63244 r67914  
    2020*   Header Files                                                                                                                 *
    2121*********************************************************************************************************************************/
     22#define LOG_GROUP LOG_GROUP_GUEST_CONTROL //LOG_GROUP_MAIN_GUESTFILE
     23#include "LoggingNew.h"
     24
    2225#ifndef VBOX_WITH_GUEST_CONTROL
    2326# error "VBOX_WITH_GUEST_CONTROL must defined in this file"
     
    3841#include <VBox/com/array.h>
    3942#include <VBox/com/listeners.h>
    40 
    41 #ifdef LOG_GROUP
    42  #undef LOG_GROUP
    43 #endif
    44 #define LOG_GROUP LOG_GROUP_GUEST_CONTROL
    45 #include <VBox/log.h>
    4643
    4744
  • trunk/src/VBox/Main/src-client/GuestFsObjInfoImpl.cpp

    r62485 r67914  
    2020*   Header Files                                                                                                                 *
    2121*********************************************************************************************************************************/
     22#define LOG_GROUP LOG_GROUP_GUEST_CONTROL // LOG_GROUP_MAIN_GUESTFSOBJINFO
     23#include "LoggingNew.h"
     24
    2225#ifndef VBOX_WITH_GUEST_CONTROL
    2326# error "VBOX_WITH_GUEST_CONTROL must defined in this file"
     
    3134#include <VBox/com/array.h>
    3235
    33 #ifdef LOG_GROUP
    34  #undef LOG_GROUP
    35 #endif
    36 #define LOG_GROUP LOG_GROUP_GUEST_CONTROL
    37 #include <VBox/log.h>
    3836
    3937
  • trunk/src/VBox/Main/src-client/GuestImpl.cpp

    r67793 r67914  
    1616 */
    1717
     18#define LOG_GROUP LOG_GROUP_MAIN_GUEST
     19#include "LoggingNew.h"
     20
    1821#include "GuestImpl.h"
    1922#ifdef VBOX_WITH_GUEST_CONTROL
     
    2932
    3033#include "AutoCaller.h"
    31 #include "Logging.h"
    3234#include "Performance.h"
    3335#include "VBoxEvents.h"
  • trunk/src/VBox/Main/src-client/GuestProcessImpl.cpp

    r65120 r67914  
    2929*   Header Files                                                                                                                 *
    3030*********************************************************************************************************************************/
     31#define LOG_GROUP LOG_GROUP_GUEST_CONTROL //LOG_GROUP_MAIN_GUESTPROCESS
     32#include "LoggingNew.h"
     33
    3134#ifndef VBOX_WITH_GUEST_CONTROL
    3235# error "VBOX_WITH_GUEST_CONTROL must defined in this file"
     
    5255
    5356#include <VBox/com/array.h>
    54 
    55 #ifdef LOG_GROUP
    56  #undef LOG_GROUP
    57 #endif
    58 #define LOG_GROUP LOG_GROUP_GUEST_CONTROL
    59 #include <VBox/log.h>
    6057
    6158
  • trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp

    r65120 r67914  
    2020*   Header Files                                                                                                                 *
    2121*********************************************************************************************************************************/
     22#define LOG_GROUP LOG_GROUP_GUEST_CONTROL //LOG_GROUP_MAIN_GUESTSESSION
     23#include "LoggingNew.h"
     24
    2225#include "GuestImpl.h"
    2326#ifndef VBOX_WITH_GUEST_CONTROL
     
    4447#include <VBox/com/listeners.h>
    4548#include <VBox/version.h>
    46 
    47 #ifdef LOG_GROUP
    48  #undef LOG_GROUP
    49 #endif
    50 #define LOG_GROUP LOG_GROUP_GUEST_CONTROL
    51 #include <VBox/log.h>
    5249
    5350
  • trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp

    r64939 r67914  
    2020*   Header Files                                                                                                                 *
    2121*********************************************************************************************************************************/
     22#define LOG_GROUP LOG_GROUP_GUEST_CONTROL //LOG_GROUP_MAIN_GUESTSESSION
     23#include "LoggingNew.h"
     24
    2225#include "GuestImpl.h"
    2326#ifndef VBOX_WITH_GUEST_CONTROL
     
    3740#include <iprt/file.h> /* For CopyTo/From. */
    3841#include <iprt/path.h>
    39 
    40 #ifdef LOG_GROUP
    41  #undef LOG_GROUP
    42 #endif
    43 #define LOG_GROUP LOG_GROUP_GUEST_CONTROL
    44 #include <VBox/log.h>
    4542
    4643
  • trunk/src/VBox/Main/src-client/HGCM.cpp

    r63563 r67914  
    11/* $Id$ */
    22/** @file
    3  *
    43 * HGCM (Host-Guest Communication Manager)
    54 */
     
    1716 */
    1817
    19 #define LOG_GROUP_MAIN_OVERRIDE LOG_GROUP_HGCM
    20 #include "Logging.h"
     18#define LOG_GROUP LOG_GROUP_HGCM
     19#include "LoggingNew.h"
    2120
    2221#include "HGCM.h"
  • trunk/src/VBox/Main/src-client/HGCMObjects.cpp

    r62485 r67914  
    1616 */
    1717
    18 #define LOG_GROUP_MAIN_OVERRIDE LOG_GROUP_HGCM
    19 #include "Logging.h"
     18#define LOG_GROUP LOG_GROUP_HGCM
     19#include "LoggingNew.h"
    2020
    2121#include "HGCMObjects.h"
  • trunk/src/VBox/Main/src-client/HGCMThread.cpp

    r62485 r67914  
    1616 */
    1717
    18 #define LOG_GROUP_MAIN_OVERRIDE LOG_GROUP_HGCM
    19 #include "Logging.h"
     18#define LOG_GROUP LOG_GROUP_HGCM
     19#include "LoggingNew.h"
    2020
    2121#include "HGCMThread.h"
  • trunk/src/VBox/Main/src-client/KeyboardImpl.cpp

    r65120 r67914  
    1616 */
    1717
     18#define LOG_GROUP LOG_GROUP_MAIN_KEYBOARD
     19#include "LoggingNew.h"
     20
    1821#include "KeyboardImpl.h"
    1922#include "ConsoleImpl.h"
    2023
    2124#include "AutoCaller.h"
    22 #include "Logging.h"
    2325
    2426#include <VBox/com/array.h>
  • trunk/src/VBox/Main/src-client/MachineDebuggerImpl.cpp

    r65550 r67914  
    2020*   Header Files                                                                                                                 *
    2121*********************************************************************************************************************************/
     22#define LOG_GROUP LOG_GROUP_MAIN_MACHINEDEBUGGER
     23#include "LoggingNew.h"
     24
    2225#include "MachineDebuggerImpl.h"
    2326
     
    2629
    2730#include "AutoCaller.h"
    28 #include "Logging.h"
    2931
    3032#include <VBox/vmm/em.h>
  • trunk/src/VBox/Main/src-client/MouseImpl.cpp

    r65103 r67914  
    1616 */
    1717
     18#define LOG_GROUP LOG_GROUP_MAIN_MOUSE
     19#include "LoggingNew.h"
     20
    1821#include <iprt/cpp/utils.h>
    1922
     
    2427
    2528#include "AutoCaller.h"
    26 #include "Logging.h"
    2729
    2830#include <VBox/vmm/pdmdrv.h>
  • trunk/src/VBox/Main/src-client/Nvram.cpp

    r63259 r67914  
    2020*   Header Files                                                                                                                 *
    2121*********************************************************************************************************************************/
     22#define LOG_GROUP LOG_GROUP_DEV_EFI
     23#include "LoggingNew.h"
     24
    2225#include "Nvram.h"
    2326#include "ConsoleImpl.h"
  • trunk/src/VBox/Main/src-client/PCIRawDevImpl.cpp

    r65103 r67914  
    1616 */
    1717
    18 #include "Logging.h"
     18#define LOG_GROUP LOG_GROUP_DEV_PCI_RAW
     19#include "LoggingNew.h"
     20
    1921#include "PCIRawDevImpl.h"
    2022#include "PCIDeviceAttachmentImpl.h"
  • trunk/src/VBox/Main/src-client/RemoteUSBBackend.cpp

    r65125 r67914  
    1717
    1818#define LOG_GROUP LOG_GROUP_USB_REMOTE
     19#include "LoggingNew.h"
     20
    1921#include "ConsoleImpl.h"
    2022#include "ConsoleVRDPServer.h"
  • trunk/src/VBox/Main/src-client/RemoteUSBDeviceImpl.cpp

    r62485 r67914  
    11/* $Id$ */
    2 
    32/** @file
    4  *
    5  * VirtualBox IHostUSBDevice COM interface implementation
    6  * for remote (VRDP) USB devices
     3 * VirtualBox IHostUSBDevice COM interface implementation for remote (VRDP) USB devices.
    74 */
    85
     
    1916 */
    2017
     18#define LOG_GROUP LOG_GROUP_MAIN_HOSTUSBDEVICE
     19#include "LoggingNew.h"
     20
    2121#include "RemoteUSBDeviceImpl.h"
    2222
    2323#include "AutoCaller.h"
    24 #include "Logging.h"
    2524
    2625#include <iprt/cpp/utils.h>
     
    3029#include <VBox/RemoteDesktop/VRDE.h>
    3130#include <VBox/vrdpusb.h>
     31
    3232
    3333// constructor / destructor
  • trunk/src/VBox/Main/src-client/SessionImpl.cpp

    r66217 r67914  
    1616 */
    1717
     18#define LOG_GROUP LOG_GROUP_MAIN_SESSION
     19#include "LoggingNew.h"
     20
    1821#include "SessionImpl.h"
    1922#include "ConsoleImpl.h"
     
    2225
    2326#include "AutoCaller.h"
    24 #include "Logging.h"
    2527
    2628#include <VBox/err.h>
    2729#include <iprt/process.h>
     30
    2831
    2932/**
  • trunk/src/VBox/Main/src-client/USBDeviceImpl.cpp

    r62485 r67914  
    1616 */
    1717
     18#define LOG_GROUP LOG_GROUP_MAIN_USBDEVICE
     19#include "LoggingNew.h"
     20
    1821#include "USBDeviceImpl.h"
    1922
    2023#include "AutoCaller.h"
    21 #include "Logging.h"
    2224
    2325#include <iprt/cpp/utils.h>
     26
    2427
    2528// constructor / destructor
  • trunk/src/VBox/Main/src-client/UsbCardReader.cpp

    r63563 r67914  
    2121*********************************************************************************************************************************/
    2222#define LOG_GROUP LOG_GROUP_USB_CARDREADER
     23#include "LoggingNew.h"
     24
    2325#include "UsbCardReader.h"
    2426#include "ConsoleImpl.h"
  • trunk/src/VBox/Main/src-client/UsbWebcamInterface.cpp

    r63563 r67914  
    1818
    1919#define LOG_GROUP LOG_GROUP_USB_WEBCAM
     20#include "LoggingNew.h"
     21
    2022#include "UsbWebcamInterface.h"
    2123#include "ConsoleImpl.h"
  • trunk/src/VBox/Main/src-client/VBoxDriversRegister.cpp

    r65171 r67914  
    2121*   Header Files                                                                                                                 *
    2222*********************************************************************************************************************************/
     23#define LOG_GROUP LOG_GROUP_MAIN
     24#include "LoggingNew.h"
     25
    2326#include "MouseImpl.h"
    2427#include "KeyboardImpl.h"
     
    4144#endif
    4245
    43 #include "Logging.h"
    44 
    4546#include <VBox/vmm/pdmdrv.h>
    4647#include <VBox/version.h>
     48
    4749
    4850/**
  • trunk/src/VBox/Main/src-client/VMMDevInterface.cpp

    r65088 r67914  
    1616 */
    1717
     18#define LOG_GROUP LOG_GROUP_MAIN_VMMDEVINTERFACES
     19#include "LoggingNew.h"
     20
    1821#include "VMMDev.h"
    1922#include "ConsoleImpl.h"
     
    2124#include "GuestImpl.h"
    2225#include "MouseImpl.h"
    23 
    24 #include "Logging.h"
    2526
    2627#include <VBox/vmm/pdmdrv.h>
  • trunk/src/VBox/Main/src-client/VideoRec.cpp

    r67642 r67914  
    1616 */
    1717
    18 #define LOG_GROUP LOG_GROUP_MAIN
     18#define LOG_GROUP LOG_GROUP_MAIN_DISPLAY
     19#include "LoggingNew.h"
    1920
    2021#include <stdexcept>
  • trunk/src/VBox/Main/src-client/VirtualBoxClientImpl.cpp

    r66926 r67914  
    1616 */
    1717
     18#define LOG_GROUP LOG_GROUP_MAIN_VIRTUALBOXCLIENT
     19#include "LoggingNew.h"
     20
    1821#include "VirtualBoxClientImpl.h"
    1922
    2023#include "AutoCaller.h"
    2124#include "VBoxEvents.h"
    22 #include "Logging.h"
    2325#include "VBox/com/ErrorInfo.h"
    2426
Note: See TracChangeset for help on using the changeset viewer.

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