From: <fu...@us...> - 2008-01-30 19:14:11
|
Revision: 610 http://cishell.svn.sourceforge.net/cishell/?rev=610&view=rev Author: fugu13 Date: 2008-01-30 11:13:58 -0800 (Wed, 30 Jan 2008) Log Message: ----------- Hook error stream up to the right logging type. Modified Paths: -------------- trunk/templates/org.cishell.templates/src/org/cishell/templates/staticexecutable/StaticExecutableRunner.java Modified: trunk/templates/org.cishell.templates/src/org/cishell/templates/staticexecutable/StaticExecutableRunner.java =================================================================== --- trunk/templates/org.cishell.templates/src/org/cishell/templates/staticexecutable/StaticExecutableRunner.java 2008-01-30 17:06:03 UTC (rev 609) +++ trunk/templates/org.cishell.templates/src/org/cishell/templates/staticexecutable/StaticExecutableRunner.java 2008-01-30 19:13:58 UTC (rev 610) @@ -184,7 +184,7 @@ new Thread(new Runnable() { public void run() { - logStream(LogService.LOG_INFO, process.getErrorStream()); + logStream(LogService.LOG_ERROR, process.getErrorStream()); } }).start(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |