View Javadoc

1   package org.lsst.ccs.bus;
2   
3   /**
4    * Listens to logging events sent to logging bus
5    * 
6    * @author aubourg
7    * 
8    */
9   public interface LogListener {
10  	void onLog(LogEvent e);
11  }