Changeset 84967 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Jun 26, 2020 10:36:50 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/tests/additions/tdAddGuestCtrl.py
r84951 r84967 1639 1639 1640 1640 # Whether to enable verbose logging for VBoxService. 1641 fEnableVerboseLogging = True;1641 fEnableVerboseLogging = False; 1642 1642 1643 1643 # Old TXS versions had a bug which caused an infinite loop when executing stuff containing "$xxx", 1644 1644 # so check the version here first and skip enabling verbose logging if needed. 1645 if sTxsVer is None:1646 fEnableVerboseLogging = False;1645 if sTxsVer: 1646 fEnableVerboseLogging = True; 1647 1647 1648 1648 # On Windows guests we always can enable verbose logging. … … 1650 1650 fEnableVerboseLogging = True; 1651 1651 1652 # If debugging mode is enabled, skip this.1653 if self.oDebug.sImgPath:1654 fEnableVerboseLogging = False;1652 # If debugging mode is disabled, enable logging -- otherwise a manually set up logging could clash here. 1653 if not self.oDebug.sImgPath: 1654 fEnableVerboseLogging = True; 1655 1655 1656 1656 #
Note:
See TracChangeset
for help on using the changeset viewer.