Hi.<br><br>I have created my own little utility application util-0.1
which has simple Erlang modules for doing logging (they are implemented
as gen_event handlers - nothing fancy).<br><br>I have an application my_app-0.1 which creates an event manager and then uses the two modules from 
util-0.1 to do logging to either screen or file.<br><br>My problem is that I have to start util before I can start my_app like this:<br><br>1> application:start(util).<br>2> application:start(my_app).<br><br>When I do the simple thing it looks like this:
<br>1> application:start(my_app)<br>{error, {not_started,util}}<br><br>To
the best of my knowledge my util-0.1 application should be exactly like
stdlib, but I never get complaints about stdlib not being started when
I start something up.
<br><br>Cheers,<br><span>Torben</span>