Changeset 55843 in vbox
- Timestamp:
- May 13, 2015 11:33:39 AM (9 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
-
doc/manual/en_US/user_VBoxManage.xml (modified) (1 diff)
-
src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp (modified) (1 diff)
-
src/VBox/Frontends/VBoxManage/VBoxManageList.cpp (modified) (2 diffs)
-
src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp (modified) (1 diff)
-
src/VBox/Main/src-server/SystemPropertiesImpl.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/en_US/user_VBoxManage.xml
r55712 r55843 2882 2882 </glossdef> 2883 2883 </glossentry> 2884 2885 <glossentry> 2886 <glossterm><computeroutput>logginglevel</computeroutput></glossterm> 2887 2888 <glossdef> 2889 <para>This configures the VBoxSVC release logging details.<footnote> 2890 <para><ulink url="http://www.virtualbox.org/wiki/VBoxLogging">http://www.virtualbox.org/wiki/VBoxLogging</ulink>.</para> 2891 </footnote> 2892 </para> 2893 </glossdef> 2894 </glossentry> 2884 2895 </glosslist></para> 2885 2896 </sect1> -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r55674 r55843 689 689 " loghistorycount <value>\n" 690 690 " defaultfrontend default|<name>\n" 691 " logginglevel <log setting>\n" 691 692 "\n", SEP); 692 693 -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r53297 r55843 5 5 6 6 /* 7 * Copyright (C) 2006-201 4Oracle Corporation7 * Copyright (C) 2006-2015 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 679 679 systemProperties->COMGETTER(DefaultAdditionsISO)(str.asOutParam()); 680 680 RTPrintf("Default Guest Additions ISO: %ls\n", str.raw()); 681 systemProperties->COMGETTER(LoggingLevel)(str.asOutParam()); 682 RTPrintf("Logging Level: %ls\n", str.raw()); 681 683 return S_OK; 682 684 } -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp
r55234 r55843 906 906 CHECK_ERROR(systemProperties, COMSETTER(DefaultFrontend)(bstrDefaultFrontend.raw())); 907 907 } 908 else if (!strcmp(a->argv[0], "logginglevel")) 909 { 910 Bstr bstrLoggingLevel(a->argv[1]); 911 if (!strcmp(a->argv[1], "default")) 912 bstrLoggingLevel.setNull(); 913 CHECK_ERROR(systemProperties, COMSETTER(LoggingLevel)(bstrLoggingLevel.raw())); 914 } 908 915 else 909 916 return errorSyntax(USAGE_SETPROPERTY, "Invalid parameter '%s'", a->argv[0]); -
trunk/src/VBox/Main/src-server/SystemPropertiesImpl.cpp
r52596 r55843 5 5 6 6 /* 7 * Copyright (C) 2006-201 4Oracle Corporation7 * Copyright (C) 2006-2015 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1181 1181 { 1182 1182 Utf8Str useLoggingLevel(aLoggingLevel); 1183 if (useLoggingLevel.isEmpty()) 1184 useLoggingLevel = VBOXSVC_LOG_DEFAULT; 1183 1185 int rc = RTLogGroupSettings(RTLogRelDefaultInstance(), useLoggingLevel.c_str()); 1184 1186 // If failed and not the default logging level - try to use the default logging level.
Note:
See TracChangeset
for help on using the changeset viewer.

