import java.io.IOException; import java.util.Timer; import java.util.TimerTask; import em; import msglog; /** * Linus Sphinx's pickle barrel network monitor */ public class emon { Timer timer; public emon() { em myem = new em(); myem.run(); } public static void main( String args[] ) throws IOException { msglog mlog = new msglog(); mlog.setDefaultLogFile( "/opt/emsweb/emonster/log/em.log" ); emon e = new emon(); // I've created an E*Monster!!! } }