Index: /trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxTray.cpp
===================================================================
--- /trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxTray.cpp	(revision 105895)
+++ /trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxTray.cpp	(revision 105896)
@@ -544,5 +544,9 @@
         {
             /* All groups we want to enable logging for VBoxTray. */
+#ifdef DEBUG
             const char *apszGroups[] = { "guest_dnd", "shared_clipboard" };
+#else /* For release builds we always want all groups being logged in verbose mode. Don't change this! */
+            const char *apszGroups[] = { "all" };
+#endif
             char        szGroupSettings[_1K];
 
@@ -561,13 +565,13 @@
                 {
                     case 1:
-                        rc = RTStrCat(szGroupSettings, sizeof(szGroupSettings), ".e.l");
-                        break;
-
-                    case 2:
                         rc = RTStrCat(szGroupSettings, sizeof(szGroupSettings), ".e.l.l2");
                         break;
 
+                    case 2:
+                        rc = RTStrCat(szGroupSettings, sizeof(szGroupSettings), ".e.l.l2.l3");
+                        break;
+
                     case 3:
-                        rc = RTStrCat(szGroupSettings, sizeof(szGroupSettings), ".e.l.l2.l3");
+                        rc = RTStrCat(szGroupSettings, sizeof(szGroupSettings), ".e.l.l2.l3.l4");
                         break;
 
@@ -575,5 +579,5 @@
                         RT_FALL_THROUGH();
                     default:
-                        rc = RTStrCat(szGroupSettings, sizeof(szGroupSettings), ".e.l.l2.l3.f");
+                        rc = RTStrCat(szGroupSettings, sizeof(szGroupSettings), ".e.l.l2.l3.l4.f");
                         break;
                 }
