On Fri, Oct 15, 2010 at 09:40, Stian Soiland-Reyes <[email protected]> wrote: > You can disable console-capturing in Taverna by going to > File->Preferences->Workbench "Capture output on stdout/stderr to log > file".
Also note that if any of your dependencies pull in an older version of log4j, console capturing might disable console printing, as a loopback occurs. In this case your System.out printouts should still end up in the Taverna log file. You can fix this by adding a dependencyManagement section to your pom.xml, like we've done in http://taverna.googlecode.com/svn/taverna/products/net.sf.taverna.t2.taverna-workbench/trunk/pom.xml <dependencyManagement> <dependencies> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.14</version> <type>jar</type> <scope>compile</scope> </dependency> </dependencies> </dependencyManagement> -- Stian Soiland-Reyes, myGrid team School of Computer Science The University of Manchester ------------------------------------------------------------------------------ Download new Adobe(R) Flash(R) Builder(TM) 4 The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly Flex(R) Builder(TM)) enable the development of rich applications that run across multiple browsers and platforms. Download your free trials today! http://p.sf.net/sfu/adobe-dev2dev _______________________________________________ taverna-hackers mailing list [email protected] Web site: http://www.taverna.org.uk Mailing lists: http://www.taverna.org.uk/about/contact-us/ Developers Guide: http://www.taverna.org.uk/developers/
