VirtualBox

Ignore:
Timestamp:
Sep 2, 2015 1:19:42 PM (9 years ago)
Author:
vboxsync
Message:

Main/Network: reduce amount of release log messages (#7993)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-server/win/NetIf-win.cpp

    r57556 r57596  
    965965                LogRel(("vboxNetWinAddComponent: collectNetIfInfo() -> %Rrc\n", rc));
    966966            }
    967             LogRel(("vboxNetWinAddComponent: adding %ls\n", lpszName));
     967            Log(("vboxNetWinAddComponent: adding %ls\n", lpszName));
    968968            /* create a new object and add it to the list */
    969969            ComObjPtr<HostNetworkInterface> iface;
     
    10161016            hr = pMpNcc->GetDisplayName(&pwszName);
    10171017            if (hr == S_OK)
    1018                 LogRel(("netIfListHostAdapters: %ls\n", pwszName));
     1018                Log(("netIfListHostAdapters: %ls\n", pwszName));
    10191019            else
    10201020                LogRel(("netIfListHostAdapters: failed to get device display name (0x%x)\n", hr));
     
    10291029                    if (hr == S_OK)
    10301030                    {
    1031                         LogRel(("netIfListHostAdapters: id = %ls\n", pId));
     1031                        Log(("netIfListHostAdapters: id = %ls\n", pId));
    10321032                        if (!_wcsnicmp(pId, L"sun_VBoxNetAdp", sizeof(L"sun_VBoxNetAdp")/2))
    10331033                        {
     
    14701470    int                  iDefault = getDefaultInterfaceIndex();
    14711471
    1472     LogRel(("NetIfList: building the list of interfaces\n"));
     1472    Log(("NetIfList: building the list of interfaces\n"));
    14731473    /* we are using the INetCfg API for getting the list of miniports */
    14741474    hr = VBoxNetCfgWinQueryINetCfg(&pNc, FALSE,
     
    15391539                        while ((hr = pEnumBp->Next(1, &pBp, NULL)) == S_OK)
    15401540                        {
    1541                             LogRel(("NetIfList: fetched INetCfgBindingPath interface\n"));
     1541                            Log(("NetIfList: fetched INetCfgBindingPath interface\n"));
    15421542                            /* S_OK == enabled, S_FALSE == disabled */
    15431543                            if (pBp->IsEnabled() == S_OK)
     
    15531553                                        while ((hr = pEnumBi->Next(1, &pBi, NULL)) == S_OK)
    15541554                                        {
    1555                                             LogRel(("NetIfList: fetched INetCfgBindingInterface interface\n"));
     1555                                            Log(("NetIfList: fetched INetCfgBindingInterface interface\n"));
    15561556                                            hr = pBi->GetLowerComponent(&pMpNcc);
    15571557                                            Assert(hr == S_OK);
     
    15621562                                                hr = pMpNcc->GetDisplayName(&pwszName);
    15631563                                                if (hr == S_OK)
    1564                                                     LogRel(("NetIfList: got %ls\n", pwszName));
     1564                                                    Log(("NetIfList: got %ls\n", pwszName));
    15651565                                                else
    15661566                                                    LogRel(("NetIfList: failed to get device display name (0x%x)\n", hr));
     
    15751575                                                        if (hr == S_OK)
    15761576                                                        {
    1577                                                             LogRel(("NetIfList: fetched network adapter id: %.80ls\n", pId));
     1577                                                            Log(("NetIfList: fetched network adapter id: %.80ls\n", pId));
    15781578                                                            /*
    15791579                                                             * Host-only interfaces are ignored here and included into the list
     
    16721672        for (pAdapter = pAddresses; pAdapter; pAdapter = pAdapter->Next)
    16731673        {
    1674             LogRel(("Enumerating %s\n", pAdapter->AdapterName));
     1674            Log(("Enumerating %s\n", pAdapter->AdapterName));
    16751675            /* Vista+ systems introduced separate type for wireless adapters */
    16761676            if (pAdapter->IfType != IF_TYPE_ETHERNET_CSMACD && pAdapter->IfType != IF_TYPE_IEEE80211)
     
    17811781                    ? HostNetworkInterfaceType_HostOnly
    17821782                    : HostNetworkInterfaceType_Bridged;
    1783                 LogRel(("Adding %ls as %s\n", pAdapter->Description,
    1784                         enmType == HostNetworkInterfaceType_Bridged ? "bridged" : "host-only"));
     1783                Log(("Adding %ls as %s\n", pAdapter->Description,
     1784                     enmType == HostNetworkInterfaceType_Bridged ? "bridged" : "host-only"));
    17851785                /* create a new object and add it to the list */
    17861786                ComObjPtr<HostNetworkInterface> iface;
     
    17971797                else
    17981798                {
    1799                     LogRel(("vboxNetWinAddComponent: HostNetworkInterface::init() -> %Rrc\n", rc));
     1799                    LogRel(("NetIfList: HostNetworkInterface::init() -> %Rrc\n", rc));
    18001800                    Assert(0);
    18011801                }
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