Changeset 47591 in vbox for trunk/src/VBox
- Timestamp:
- Aug 7, 2013 1:44:01 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87792
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/SystemPropertiesImpl.cpp
r47590 r47591 1284 1284 HRESULT SystemProperties::setLoggingLevel(const Utf8Str &aLoggingLevel) 1285 1285 { 1286 int rc = S_OK;1286 int rc; 1287 1287 Utf8Str useLoggingLevel(aLoggingLevel); 1288 1288 rc = RTLogGroupSettings(RTLogRelDefaultInstance(), useLoggingLevel.c_str()); … … 1305 1305 // Set to passed value or if default used/attempted (even if error condition) use empty string. 1306 1306 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; 1308 1308 } 1309 1309
Note:
See TracChangeset
for help on using the changeset viewer.