Index: /trunk/src/VBox/Runtime/common/path/RTPathAbsEx.cpp
===================================================================
--- /trunk/src/VBox/Runtime/common/path/RTPathAbsEx.cpp	(revision 78399)
+++ /trunk/src/VBox/Runtime/common/path/RTPathAbsEx.cpp	(revision 78400)
@@ -29,4 +29,5 @@
 *   Header Files                                                                                                                 *
 *********************************************************************************************************************************/
+#define LOG_GROUP RTLOGGROUP_PATH
 #include "internal/iprt.h"
 #include <iprt/path.h>
@@ -34,4 +35,5 @@
 #include <iprt/err.h>
 #include <iprt/ctype.h>
+#include <iprt/log.h>
 #include <iprt/mem.h>
 #include <iprt/param.h>
@@ -603,4 +605,6 @@
 RTDECL(int) RTPathAbsEx(const char *pszBase, const char *pszPath, uint32_t fFlags, char *pszAbsPath, size_t *pcbAbsPath)
 {
+    LogFlow(("RTPathAbsEx: pszBase=%s pszPath=%s fFlags=%#x\n", pszBase, pszPath, fFlags));
+
     /*
      * Some input validation.
@@ -674,4 +678,5 @@
     if (pParsedFree)
         RTMemTmpFree(pParsedFree);
+    LogFlow(("RTPathAbsEx: returns %Rrc *pcbAbsPath=%#zx\n", rc, *pcbAbsPath));
     return rc;
 }
