Changeset 59889 in vbox
- Timestamp:
- Mar 1, 2016 3:18:14 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r59888 r59889 225 225 case KMachineState_Teleported: 226 226 case KMachineState_Aborted: 227 { 228 LogRel(("GUI: Aborting startup due to invalid machine state detected: %d\n", ms)); 227 229 return false; 230 } 228 231 default: 229 232 break; … … 285 288 if (vboxGlobal().showStartVMErrors()) 286 289 msgCenter().cannotStartMachine(console(), machineName()); 290 LogRel(("GUI: Aborting startup due to power up issue detected...\n")); 287 291 return false; 288 292 } … … 313 317 if (vboxGlobal().showStartVMErrors()) 314 318 msgCenter().cannotStartMachine(progress, machineName()); 319 LogRel(("GUI: Aborting startup due to power up progress issue detected...\n")); 315 320 return false; 316 321 } … … 1821 1826 machineLogic()->openNetworkSettingsDialog(); 1822 1827 else 1828 { 1829 LogRel(("GUI: Aborting startup due to preprocess initialization issue detected...\n")); 1823 1830 return false; 1831 } 1824 1832 } 1825 1833 #endif /* VBOX_WITH_NETFLT */ … … 1911 1919 bool fServerCrashed = false; 1912 1920 powerOff(false, fServerCrashed); 1921 LogRel(("GUI: Aborting startup due to postprocess initialization issue detected...\n")); 1913 1922 return false; 1914 1923 }
Note:
See TracChangeset
for help on using the changeset viewer.