View Javadoc

1   package com.github.triceo.splitlog.api;
2   
3   /**
4    * How important the log file says the message is.
5    * 
6    */
7   public enum MessageSeverity {
8   
9       DEBUG, ERROR, INFO, TRACE, UNKNOWN, WARNING;
10  
11  }