- Fixed: error should log an error

git-svn-id: https://svn.apache.org/repos/asf/flex/whiteboard@1456925 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/fthomas/developerToolSuite/trunk/org.apache.flex.utilities.developerToolSuite.executor-lib/src/main/flex/org/apache/flex/utilities/developerToolSuite/executor/application/nativeProcess/NativeShellHelper.as b/fthomas/developerToolSuite/trunk/org.apache.flex.utilities.developerToolSuite.executor-lib/src/main/flex/org/apache/flex/utilities/developerToolSuite/executor/application/nativeProcess/NativeShellHelper.as
index e27c58e..548ae6c 100644
--- a/fthomas/developerToolSuite/trunk/org.apache.flex.utilities.developerToolSuite.executor-lib/src/main/flex/org/apache/flex/utilities/developerToolSuite/executor/application/nativeProcess/NativeShellHelper.as
+++ b/fthomas/developerToolSuite/trunk/org.apache.flex.utilities.developerToolSuite.executor-lib/src/main/flex/org/apache/flex/utilities/developerToolSuite/executor/application/nativeProcess/NativeShellHelper.as
@@ -77,11 +77,11 @@
             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());
             }
         }