Index: /trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
===================================================================
--- /trunk/src/VBox/Devices/VMMDev/VMMDev.cpp	(revision 54804)
+++ /trunk/src/VBox/Devices/VMMDev/VMMDev.cpp	(revision 54805)
@@ -2880,5 +2880,5 @@
             pThis->szMsg[pThis->iMsg] = '\0';
             if (pThis->iMsg)
-                LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP_DEV_VMM_BACKDOOR, ("Guest Log: %s\n", pThis->szMsg));
+                LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP_DEV_VMM_BACKDOOR, ("VMMDev: Guest Log: %s\n", pThis->szMsg));
             pThis->iMsg = 0;
         }
@@ -2888,5 +2888,5 @@
             {
                 pThis->szMsg[pThis->iMsg] = '\0';
-                LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP_DEV_VMM_BACKDOOR, ("Guest Log: %s\n", pThis->szMsg));
+                LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_LEVEL_1, LOG_GROUP_DEV_VMM_BACKDOOR, ("VMMDev: Guest Log: %s\n", pThis->szMsg));
                 pThis->iMsg = 0;
             }
Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp	(revision 54804)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp	(revision 54805)
@@ -414,5 +414,5 @@
         if (m_fUnused)
         {
-            LogRel2(("ProcessVHWACommand: Postponed!\n"));
+            LogRel2(("GUI: ProcessVHWACommand: Postponed!\n"));
             /* Unlock access to frame-buffer: */
             UIFrameBufferPrivate::unlock();
@@ -444,5 +444,5 @@
         if (m_fUnused)
         {
-            LogRel2(("NotifyUpdate: Ignored!\n"));
+            LogRel2(("GUI: NotifyUpdate: Ignored!\n"));
             mOverlay.onNotifyUpdateIgnore (aX, aY, aW, aH);
             /* Unlock access to frame-buffer: */
@@ -532,5 +532,5 @@
 HRESULT UIFrameBufferPrivate::init(UIMachineView *pMachineView)
 {
-    LogRel2(("UIFrameBufferPrivate::init %p\n", this));
+    LogRel2(("GUI: UIFrameBufferPrivate::init %p\n", this));
 
     /* Assign mahine-view: */
@@ -566,5 +566,5 @@
 UIFrameBufferPrivate::~UIFrameBufferPrivate()
 {
-    LogRel2(("UIFrameBufferPrivate::~UIFrameBufferPrivate %p\n", this));
+    LogRel2(("GUI: UIFrameBufferPrivate::~UIFrameBufferPrivate %p\n", this));
 
     /* Disconnect handlers: */
@@ -724,5 +724,5 @@
     if (m_fUnused)
     {
-        LogRel(("UIFrameBufferPrivate::NotifyChange: Screen=%lu, Origin=%lux%lu, Size=%lux%lu, Ignored!\n",
+        LogRel(("GUI: UIFrameBufferPrivate::NotifyChange: Screen=%lu, Origin=%lux%lu, Size=%lux%lu, Ignored!\n",
                 (unsigned long)uScreenId,
                 (unsigned long)uX, (unsigned long)uY,
@@ -751,5 +751,5 @@
     /* Widget resize is NOT thread-safe and *probably* never will be,
      * We have to notify machine-view with the async-signal to perform resize operation. */
-    LogRel(("UIFrameBufferPrivate::NotifyChange: Screen=%lu, Origin=%lux%lu, Size=%lux%lu, Sending to async-handler\n",
+    LogRel(("GUI: UIFrameBufferPrivate::NotifyChange: Screen=%lu, Origin=%lux%lu, Size=%lux%lu, Sending to async-handler\n",
             (unsigned long)uScreenId,
             (unsigned long)uX, (unsigned long)uY,
@@ -775,5 +775,5 @@
     if (m_fUnused)
     {
-        LogRel2(("UIFrameBufferPrivate::NotifyUpdate: Origin=%lux%lu, Size=%lux%lu, Ignored!\n",
+        LogRel2(("GUI: UIFrameBufferPrivate::NotifyUpdate: Origin=%lux%lu, Size=%lux%lu, Ignored!\n",
                  (unsigned long)uX, (unsigned long)uY,
                  (unsigned long)uWidth, (unsigned long)uHeight));
@@ -788,5 +788,5 @@
     /* Widget update is NOT thread-safe and *seems* never will be,
      * We have to notify machine-view with the async-signal to perform update operation. */
-    LogRel2(("UIFrameBufferPrivate::NotifyUpdate: Origin=%lux%lu, Size=%lux%lu, Sending to async-handler\n",
+    LogRel2(("GUI: UIFrameBufferPrivate::NotifyUpdate: Origin=%lux%lu, Size=%lux%lu, Sending to async-handler\n",
              (unsigned long)uX, (unsigned long)uY,
              (unsigned long)uWidth, (unsigned long)uHeight));
@@ -813,5 +813,5 @@
     if (m_fUnused)
     {
-        LogRel2(("UIFrameBufferPrivate::NotifyUpdateImage: Origin=%lux%lu, Size=%lux%lu, Ignored!\n",
+        LogRel2(("GUI: UIFrameBufferPrivate::NotifyUpdateImage: Origin=%lux%lu, Size=%lux%lu, Ignored!\n",
                  (unsigned long)uX, (unsigned long)uY,
                  (unsigned long)uWidth, (unsigned long)uHeight));
@@ -840,5 +840,5 @@
         /* Widget update is NOT thread-safe and *seems* never will be,
          * We have to notify machine-view with the async-signal to perform update operation. */
-        LogRel2(("UIFrameBufferPrivate::NotifyUpdateImage: Origin=%lux%lu, Size=%lux%lu, Sending to async-handler\n",
+        LogRel2(("GUI: UIFrameBufferPrivate::NotifyUpdateImage: Origin=%lux%lu, Size=%lux%lu, Sending to async-handler\n",
                  (unsigned long)uX, (unsigned long)uY,
                  (unsigned long)uWidth, (unsigned long)uHeight));
@@ -858,5 +858,5 @@
     if (!pfSupported)
     {
-        LogRel2(("UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Invalid pfSupported pointer!\n",
+        LogRel2(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Invalid pfSupported pointer!\n",
                  (unsigned long)uBPP, (unsigned long)uWidth, (unsigned long)uHeight));
 
@@ -870,5 +870,5 @@
     if (m_fUnused)
     {
-        LogRel2(("UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Ignored!\n",
+        LogRel2(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Ignored!\n",
                  (unsigned long)uBPP, (unsigned long)uWidth, (unsigned long)uHeight));
 
@@ -891,5 +891,5 @@
         && (uHeight > (ULONG)height()))
         *pfSupported = FALSE;
-    LogRel2(("UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Supported=%s\n",
+    LogRel2(("GUI: UIFrameBufferPrivate::IsVideoModeSupported: Mode: BPP=%lu, Size=%lux%lu, Supported=%s\n",
              (unsigned long)uBPP, (unsigned long)uWidth, (unsigned long)uHeight, *pfSupported ? "TRUE" : "FALSE"));
 
@@ -919,5 +919,5 @@
     if (!pRectangles)
     {
-        LogRel2(("UIFrameBufferPrivate::SetVisibleRegion: Rectangle count=%lu, Invalid pRectangles pointer!\n",
+        LogRel2(("GUI: UIFrameBufferPrivate::SetVisibleRegion: Rectangle count=%lu, Invalid pRectangles pointer!\n",
                  (unsigned long)uCount));
 
@@ -931,5 +931,5 @@
     if (m_fUnused)
     {
-        LogRel2(("UIFrameBufferPrivate::SetVisibleRegion: Rectangle count=%lu, Ignored!\n",
+        LogRel2(("GUI: UIFrameBufferPrivate::SetVisibleRegion: Rectangle count=%lu, Ignored!\n",
                  (unsigned long)uCount));
 
@@ -966,5 +966,5 @@
         m_syncVisibleRegion = region;
         /* And send async-signal to update asynchronous one: */
-        LogRel2(("UIFrameBufferPrivate::SetVisibleRegion: Rectangle count=%lu, Sending to async-handler\n",
+        LogRel2(("GUI: UIFrameBufferPrivate::SetVisibleRegion: Rectangle count=%lu, Sending to async-handler\n",
                  (unsigned long)uCount));
         emit sigSetVisibleRegion(region);
@@ -974,5 +974,5 @@
         /* Save the region. */
         m_pendingSyncVisibleRegion = region;
-        LogRel2(("UIFrameBufferPrivate::SetVisibleRegion: Rectangle count=%lu, Saved\n",
+        LogRel2(("GUI: UIFrameBufferPrivate::SetVisibleRegion: Rectangle count=%lu, Saved\n",
                  (unsigned long)uCount));
     }
@@ -999,5 +999,5 @@
     if (m_fUnused)
     {
-        LogRel2(("UIFrameBufferPrivate::Notify3DEvent: Ignored!\n"));
+        LogRel2(("GUI: UIFrameBufferPrivate::Notify3DEvent: Ignored!\n"));
 
         /* Unlock access to frame-buffer: */
@@ -1016,5 +1016,5 @@
              * about 3D overlay visibility change: */
             BOOL fVisible = eventData[0];
-            LogRel2(("UIFrameBufferPrivate::Notify3DEvent: Sending to async-handler: "
+            LogRel2(("GUI: UIFrameBufferPrivate::Notify3DEvent: Sending to async-handler: "
                      "(VBOX3D_NOTIFY_EVENT_TYPE_VISIBLE_3DDATA = %s)\n",
                      fVisible ? "TRUE" : "FALSE"));
@@ -1048,5 +1048,5 @@
 void UIFrameBufferPrivate::handleNotifyChange(int iWidth, int iHeight)
 {
-    LogRel(("UIFrameBufferPrivate::handleNotifyChange: Size=%dx%d\n", iWidth, iHeight));
+    LogRel(("GUI: UIFrameBufferPrivate::handleNotifyChange: Size=%dx%d\n", iWidth, iHeight));
 
     /* Make sure machine-view is assigned: */
@@ -1060,5 +1060,5 @@
     {
         /* Do nothing, change-event already processed: */
-        LogRel2(("UIFrameBufferPrivate::handleNotifyChange: Already processed.\n"));
+        LogRel2(("GUI: UIFrameBufferPrivate::handleNotifyChange: Already processed.\n"));
         /* Unlock access to frame-buffer: */
         unlock();
@@ -1081,5 +1081,5 @@
 void UIFrameBufferPrivate::handlePaintEvent(QPaintEvent *pEvent)
 {
-    LogRel2(("UIFrameBufferPrivate::handlePaintEvent: Origin=%lux%lu, Size=%dx%d\n",
+    LogRel2(("GUI: UIFrameBufferPrivate::handlePaintEvent: Origin=%lux%lu, Size=%dx%d\n",
              pEvent->rect().x(), pEvent->rect().y(),
              pEvent->rect().width(), pEvent->rect().height()));
@@ -1140,5 +1140,5 @@
 void UIFrameBufferPrivate::performResize(int iWidth, int iHeight)
 {
-    LogRel(("UIFrameBufferPrivate::performResize: Size=%dx%d\n", iWidth, iHeight));
+    LogRel(("GUI: UIFrameBufferPrivate::performResize: Size=%dx%d\n", iWidth, iHeight));
 
     /* Make sure machine-view is assigned: */
@@ -1158,5 +1158,5 @@
     if (m_sourceBitmap.isNull())
     {
-        LogRel(("UIFrameBufferPrivate::performResize: "
+        LogRel(("GUI: UIFrameBufferPrivate::performResize: "
                 "Using FALLBACK buffer due to source-bitmap is not provided..\n"));
 
@@ -1172,5 +1172,5 @@
     else
     {
-        LogRel(("UIFrameBufferPrivate::performResize: "
+        LogRel(("GUI: UIFrameBufferPrivate::performResize: "
                 "Directly using source-bitmap content\n"));
 
@@ -1228,5 +1228,5 @@
 
         /* And send async-signal to update asynchronous one: */
-        LogRel2(("UIFrameBufferPrivate::performResize: Rectangle count=%lu, Sending to async-handler\n",
+        LogRel2(("GUI: UIFrameBufferPrivate::performResize: Rectangle count=%lu, Sending to async-handler\n",
                  (unsigned long)m_syncVisibleRegion.rectCount()));
         emit sigSetVisibleRegion(m_syncVisibleRegion);
Index: /trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineLogicNormal.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineLogicNormal.cpp	(revision 54804)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineLogicNormal.cpp	(revision 54805)
@@ -65,5 +65,5 @@
 void UIMachineLogicNormal::sltCheckForRequestedVisualStateType()
 {
-    LogRel(("UIMachineLogicNormal::sltCheckForRequestedVisualStateType: Requested-state=%d, Machine-state=%d\n",
+    LogRel(("GUI: UIMachineLogicNormal::sltCheckForRequestedVisualStateType: Requested-state=%d, Machine-state=%d\n",
             uisession()->requestedVisualState(), uisession()->machineState()));
 
@@ -81,5 +81,5 @@
             if (uisession()->isGuestSupportsSeamless())
             {
-                LogRel(("UIMachineLogicNormal::sltCheckForRequestedVisualStateType: "
+                LogRel(("GUI: UIMachineLogicNormal::sltCheckForRequestedVisualStateType: "
                         "Going 'seamless' as requested...\n"));
                 uisession()->setRequestedVisualState(UIVisualStateType_Invalid);
@@ -87,5 +87,5 @@
             }
             else
-                LogRel(("UIMachineLogicNormal::sltCheckForRequestedVisualStateType: "
+                LogRel(("GUI: UIMachineLogicNormal::sltCheckForRequestedVisualStateType: "
                         "Rejecting 'seamless' as is it not yet supported...\n"));
             break;
