VirtualBox

Changeset 91189 in vbox for trunk/src/VBox/ValidationKit


Ignore:
Timestamp:
Sep 10, 2021 6:22:54 AM (3 years ago)
Author:
vboxsync
Message:

Audio/VKAT: Change the log group settings via the verbosity ​options. bugref:10008

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/utils/audio/vkat.cpp

    r91178 r91189  
    14031403        {
    14041404            RTMsgInfo("Setting verbosity logging to level %u\n", g_uVerbosity);
    1405             rc = RTLogGroupSettings(g_pRelLogger,
    1406                                     "drv_audio.e.l.l2.l3.f"
    1407                                     " audio_mixer.e.l.l2.l3.f"
    1408                                     " audio_test.e.l.l2.l3.f");
     1405            switch (g_uVerbosity) /* Not very elegant, but has to do it for now. */
     1406            {
     1407                case 1:
     1408                    rc = RTLogGroupSettings(g_pRelLogger,
     1409                                            "drv_audio.e.l+audio_mixer.e.l+audio_test.e.l");
     1410                    break;
     1411
     1412                case 2:
     1413                    rc = RTLogGroupSettings(g_pRelLogger,
     1414                                            "drv_audio.e.l.l2+audio_mixer.e.l.l2+audio_test.e.l.l2");
     1415                    break;
     1416
     1417                case 3:
     1418                    rc = RTLogGroupSettings(g_pRelLogger,
     1419                                            "drv_audio.e.l.l2.l3+audio_mixer.e.l.l2.l3+audio_test.e.l.l2.l3");
     1420                    break;
     1421
     1422                case 4:
     1423                    RT_FALL_THROUGH();
     1424                default:
     1425                    rc = RTLogGroupSettings(g_pRelLogger,
     1426                                            "drv_audio.e.l.l2.l3.f+audio_mixer.e.l.l2.l3.f+audio_test.e.l.l2.l3.f");
     1427                    break;
     1428            }
    14091429            if (RT_FAILURE(rc))
    14101430                RTMsgError("Setting debug logging failed, rc=%Rrc\n", rc);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette