VirtualBox

Changeset 47591 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Aug 7, 2013 1:44:01 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
87792
Message:

Small changes to tidy up 6787 Contrl VboxSV release logging

File:
1 edited

Legend:

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

    r47590 r47591  
    12841284HRESULT SystemProperties::setLoggingLevel(const Utf8Str &aLoggingLevel)
    12851285{
    1286     int rc = S_OK;
     1286    int rc;
    12871287    Utf8Str useLoggingLevel(aLoggingLevel);
    12881288    rc = RTLogGroupSettings(RTLogRelDefaultInstance(), useLoggingLevel.c_str());
     
    13051305    //  Set to passed value or if default used/attempted (even if error condition) use empty string.
    13061306    m->strLoggingLevel = (useLoggingLevel.equals(VBOXSVC_LOG_DEFAULT) ? "" : useLoggingLevel);
    1307     return (RT_SUCCESS(rc) ? S_OK : E_FAIL);
     1307    return RT_SUCCESS(rc) ? S_OK : E_FAIL;
    13081308}
    13091309
Note: See TracChangeset for help on using the changeset viewer.

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