Author: fthomas
Date: Fri Mar 15 12:21:57 2013
New Revision: 1456925
URL: http://svn.apache.org/r1456925
Log:
- Fixed: error should log an error
Modified:
flex/whiteboard/fthomas/developerToolSuite/trunk/org.apache.flex.utilities.developerToolSuite.executor-lib/src/main/flex/org/apache/flex/utilities/developerToolSuite/executor/application/nativeProcess/NativeShellHelper.as
Modified:
flex/whiteboard/fthomas/developerToolSuite/trunk/org.apache.flex.utilities.developerToolSuite.executor-lib/src/main/flex/org/apache/flex/utilities/developerToolSuite/executor/application/nativeProcess/NativeShellHelper.as
URL:
http://svn.apache.org/viewvc/flex/whiteboard/fthomas/developerToolSuite/trunk/org.apache.flex.utilities.developerToolSuite.executor-lib/src/main/flex/org/apache/flex/utilities/developerToolSuite/executor/application/nativeProcess/NativeShellHelper.as?rev=1456925&r1=1456924&r2=1456925&view=diff
==============================================================================
---
flex/whiteboard/fthomas/developerToolSuite/trunk/org.apache.flex.utilities.developerToolSuite.executor-lib/src/main/flex/org/apache/flex/utilities/developerToolSuite/executor/application/nativeProcess/NativeShellHelper.as
(original)
+++
flex/whiteboard/fthomas/developerToolSuite/trunk/org.apache.flex.utilities.developerToolSuite.executor-lib/src/main/flex/org/apache/flex/utilities/developerToolSuite/executor/application/nativeProcess/NativeShellHelper.as
Fri Mar 15 12:21:57 2013
@@ -77,11 +77,11 @@ package org.apache.flex.utilities.develo
try {
_process.start(nativeProcessStartupInfo);
} catch (error:IllegalOperationError) {
- LOG.debug("Illegal Operation: {0}", error.toString());
+ LOG.error("Illegal Operation: {0}", error.toString());
} catch (error:ArgumentError) {
- LOG.debug("Argument Error: {0}", error.toString());
+ LOG.error("Argument Error: {0}", error.toString());
} catch (error:Error) {
- LOG.debug("Error: {0}", error.toString());
+ LOG.error("Error: {0}", error.toString());
}
}