Changeset 105896 in vbox
- Timestamp:
- Aug 29, 2024 6:50:48 AM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxTray.cpp
r105581 r105896 544 544 { 545 545 /* All groups we want to enable logging for VBoxTray. */ 546 #ifdef DEBUG 546 547 const char *apszGroups[] = { "guest_dnd", "shared_clipboard" }; 548 #else /* For release builds we always want all groups being logged in verbose mode. Don't change this! */ 549 const char *apszGroups[] = { "all" }; 550 #endif 547 551 char szGroupSettings[_1K]; 548 552 … … 561 565 { 562 566 case 1: 563 rc = RTStrCat(szGroupSettings, sizeof(szGroupSettings), ".e.l");564 break;565 566 case 2:567 567 rc = RTStrCat(szGroupSettings, sizeof(szGroupSettings), ".e.l.l2"); 568 568 break; 569 569 570 case 2: 571 rc = RTStrCat(szGroupSettings, sizeof(szGroupSettings), ".e.l.l2.l3"); 572 break; 573 570 574 case 3: 571 rc = RTStrCat(szGroupSettings, sizeof(szGroupSettings), ".e.l.l2.l3 ");575 rc = RTStrCat(szGroupSettings, sizeof(szGroupSettings), ".e.l.l2.l3.l4"); 572 576 break; 573 577 … … 575 579 RT_FALL_THROUGH(); 576 580 default: 577 rc = RTStrCat(szGroupSettings, sizeof(szGroupSettings), ".e.l.l2.l3. f");581 rc = RTStrCat(szGroupSettings, sizeof(szGroupSettings), ".e.l.l2.l3.l4.f"); 578 582 break; 579 583 }
Note:
See TracChangeset
for help on using the changeset viewer.