<?xml version='1.0' encoding='utf-8'?>
<!-- Configuration file for the Macbeth kernel. -->
<kernelconfig>
<!-- Options section -->
<!-- Basic options -->
<option name="kernelname" value="MyKernel"/>
<option name="port" value="19000"/>
<!-- The debug stream will output meaningless debug information -->
<option name="debugstream.logged" value="false"/>
<option name="debugstream.timestamped" value="true"/>
<option name="debugstream.visible" value="true"/>
<option name="debugstream.prefix" value="DEBUG "/>
<!-- The info stream will output general information and non-critical warnings -->
<option name="infostream.logged" value="true"/>
<option name="infostream.timestamped" value="true"/>
<option name="infostream.visible" value="true"/>
<option name="infostream.prefix" value="INFO "/>
<!-- The error stream will output error messages -->
<option name="errorstream.logged" value="true"/>
<option name="errorstream.timestamped" value="true"/>
<option name="errorstream.visible" value="true"/>
<option name="errorstream.prefix" value="ERROR "/>
<!-- Script section -->
<!-- On kernel startup... -->
<event name="Kernel.OnStartup">
<!-- Let's autoload some modules -->
<do action="Kernel.LoadModule" params="ARNE" />
<do action="Kernel.LoadModule" params="RemoteControl" />
<do action="Kernel.LoadModule" params="RoomControl" />
</event>
</kernelconfig>