Index: /trunk/src/VBox/Additions/x11/VBoxClient/clipboard.cpp
===================================================================
--- /trunk/src/VBox/Additions/x11/VBoxClient/clipboard.cpp	(revision 81172)
+++ /trunk/src/VBox/Additions/x11/VBoxClient/clipboard.cpp	(revision 81173)
@@ -68,7 +68,7 @@
 {
     int rc;
-    LogRelFlowFunc(("u32Format=%d, pv=%p, cb=%d\n", u32Format, pv, cb));
+    LogFlowFunc(("u32Format=%d, pv=%p, cb=%d\n", u32Format, pv, cb));
     rc = VbglR3ClipboardWriteData(g_ctx.client, u32Format, pv, cb);
-    LogRelFlowFuncLeaveRC(rc);
+    LogFlowFuncLeaveRC(rc);
     return rc;
 }
@@ -94,5 +94,5 @@
 
     *ppv = 0;
-    LogRelFlowFunc(("u32Format=%u\n", u32Format));
+    LogFlowFunc(("u32Format=%u\n", u32Format));
     if (RT_UNLIKELY(!pv))
         rc = VERR_NO_MEMORY;
@@ -127,7 +127,7 @@
             RTMemFree(pv);
     }
-    LogRelFlowFuncLeaveRC(rc);
+    LogFlowFuncLeaveRC(rc);
     if (RT_SUCCESS(rc))
-        LogRelFlow(("    *pcb=%d\n", *pcb));
+        LogFlow(("    *pcb=%d\n", *pcb));
     return rc;
 }
@@ -151,7 +151,7 @@
 {
     RT_NOREF(pCtx);
-    LogRelFlowFunc(("u32Formats=%d\n", u32Formats));
+    LogFlowFunc(("u32Formats=%d\n", u32Formats));
     int rc = VbglR3ClipboardFormatsReport(g_ctx.client, u32Formats);
-    LogRelFlowFuncLeaveRC(rc);
+    LogFlowFuncLeaveRC(rc);
 }
 
@@ -212,5 +212,5 @@
         ClipDestructX11(g_ctx.pBackend);
 
-    LogRelFlowFuncLeaveRC(rc);
+    LogFlowFuncLeaveRC(rc);
     return rc;
 }
@@ -222,5 +222,5 @@
 {
     int rc;
-    LogRelFlowFunc(("Starting guest clipboard service\n"));
+    LogFlowFunc(("Starting guest clipboard service\n"));
     bool fExiting = false;
 
@@ -240,5 +240,5 @@
                      * future requests from guest applications.
                      */
-                    LogRelFlowFunc(("VBOX_SHCL_HOST_MSG_FORMATS_WRITE fFormats=%x\n", fFormats));
+                    LogFlowFunc(("VBOX_SHCL_HOST_MSG_FORMATS_WRITE fFormats=%x\n", fFormats));
                     ClipAnnounceFormatToX11(g_ctx.pBackend, fFormats);
                     break;
@@ -248,5 +248,5 @@
                 {
                     /* The host needs data in the specified format. */
-                    LogRelFlowFunc(("VBOX_SHCL_HOST_MSG_READ_DATA fFormats=%x\n", fFormats));
+                    LogFlowFunc(("VBOX_SHCL_HOST_MSG_READ_DATA fFormats=%x\n", fFormats));
                     CLIPREADCBREQ *pReq;
                     pReq = (CLIPREADCBREQ *)RTMemAllocZ(sizeof(*pReq));
@@ -268,5 +268,5 @@
                 {
                     /* The host is terminating. */
-                    LogRelFlowFunc(("VBOX_SHCL_HOST_MSG_QUIT\n"));
+                    LogFlowFunc(("VBOX_SHCL_HOST_MSG_QUIT\n"));
                     if (RT_SUCCESS(ClipStopX11(g_ctx.pBackend)))
                         ClipDestructX11(g_ctx.pBackend);
@@ -283,7 +283,7 @@
         }
 
-        LogRelFlow(("processed host event rc = %d\n", rc));
-    }
-    LogRelFlowFuncLeaveRC(rc);
+        LogFlow(("processed host event rc = %d\n", rc));
+    }
+    LogFlowFuncLeaveRC(rc);
     return rc;
 }
