Index: /trunk/src/VBox/GuestHost/SharedClipboard/x11-clipboard.cpp
===================================================================
--- /trunk/src/VBox/GuestHost/SharedClipboard/x11-clipboard.cpp	(revision 54806)
+++ /trunk/src/VBox/GuestHost/SharedClipboard/x11-clipboard.cpp	(revision 54807)
@@ -623,5 +623,5 @@
 static int clipEventThread(RTTHREAD self, void *pvUser)
 {
-    LogRel(("Shared clipboard: starting shared clipboard thread\n"));
+    LogRel(("Shared clipboard: Starting shared clipboard thread\n"));
 
     CLIPBACKEND *pCtx = (CLIPBACKEND *)pvUser;
@@ -634,5 +634,5 @@
         XtAppProcessEvent(pCtx->appContext, XtIMAll);
     }
-    LogRel(("Shared clipboard: shared clipboard thread terminated successfully\n"));
+    LogRel(("Shared clipboard: Shared clipboard thread terminated successfully\n"));
     return VINF_SUCCESS;
 }
@@ -741,5 +741,5 @@
     if (NULL == pDisplay)
     {
-        LogRel(("Shared clipboard: failed to connect to the X11 clipboard - the window system may not be running.\n"));
+        LogRel(("Shared clipboard: Failed to connect to the X11 clipboard - the window system may not be running.\n"));
         rc = VERR_NOT_SUPPORTED;
     }
@@ -749,5 +749,5 @@
         rc = clipLoadXFixes(pDisplay, pCtx);
         if (RT_FAILURE(rc))
-           LogRel(("Shared clipboard: failed to load the XFIXES extension.\n"));
+           LogRel(("Shared clipboard: Failed to load the XFIXES extension.\n"));
     }
 #endif
@@ -760,5 +760,5 @@
         if (NULL == pCtx->widget)
         {
-            LogRel(("Shared clipboard: failed to construct the X11 window for the shared clipboard manager.\n"));
+            LogRel(("Shared clipboard: Failed to construct the X11 window for the shared clipboard manager.\n"));
             rc = VERR_NO_MEMORY;
         }
@@ -793,5 +793,5 @@
             rc = RTErrConvertFromErrno(errno);
         if (RT_FAILURE(rc))
-            LogRel(("Shared clipboard: failed to setup the termination mechanism.\n"));
+            LogRel(("Shared clipboard: Failed to setup the termination mechanism.\n"));
     }
     else
@@ -800,5 +800,5 @@
         clipUninit(pCtx);
     if (RT_FAILURE(rc))
-        LogRel(("Shared clipboard: initialisation failed: %Rrc\n", rc));
+        LogRel(("Shared clipboard: Initialisation failed: %Rrc\n", rc));
     return rc;
 }
@@ -829,5 +829,5 @@
     pCtx->fHaveX11 = true;
 
-    LogRel(("Initializing X11 clipboard backend\n"));
+    LogRel(("Shared clipboard: Initializing X11 clipboard backend\n"));
     if (pCtx)
         pCtx->pFrontend = pFrontend;
@@ -880,5 +880,5 @@
         if (RT_FAILURE(rc))
         {
-            LogRel(("Failed to start the shared clipboard thread.\n"));
+            LogRel(("Shared clipboard: Failed to start the shared clipboard thread.\n"));
             clipUninit(pCtx);
         }
