View Javadoc

1   package org.lsst.ccs.bus;
2   
3   /**
4    * Detail level for status and log messages. Will impact for instance the
5    * retention period when information is persisted.
6    * 
7    * Mirroring java logging levels
8    * 
9    * @author aubourg
10   * 
11   */
12  public enum DetailLevel {
13  	SEVERE, WARNING, INFO, FINE, FINER, FINEST
14  }
15  
16  // TODO check the order