Hi,

How is it possible to control console log output when using arquillian-jbossas-managed-6?

The tests are running just fine, but I'd like to route all output to console. The reason behind this is because Bamboo isn't able to pick up on target/jboss-6.0.0.Final/server/default/deploy/log/server.log. Therefor log output is required so Bamboo can catch exceptions being thrown.

Any ideas folks.

Cheers,
Ove


<?xml version="1.0"?>

<arquillian xmlns="http://jboss.com/arquillian" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://jboss.org/schema/arquillian http://jboss.org/schema/arquillian/arquillian_1_0.xsd">

    <engine>
        <property name="deploymentExportPath">target/</property>
    </engine>

    <container qualifier="jbossas" default="true">
        <configuration>
            <property name="jbossHome">target/jboss-6.0.0.Final</property>
            <property name="httpPort">8280</property>
            <property name="rmiPort">1299</property>
            <property name="javaVmArguments">-Xmx512m -XX:MaxPermSize=128m -Djboss.service.binding.set=ports-02 -Darquillian.logging=system -
Djava.util.logging.manager=org.jboss.logmanager.LogManager</property>
        </configuration>
        <protocol type="Servlet 3.0">
            <configuration>
                <property name="host">localhost</property>
                <property name="port">8280</property>
            </configuration>
        </protocol>
    </container>

</arquillian>