Ejemplo n.º 1
0
 public virtual void SetSeverity(IFernflowerLogger.Severity severity)
 {
     this.severity = severity;
 }
Ejemplo n.º 2
0
 public abstract void WriteMessage(string message, IFernflowerLogger.Severity severity
                                   , Exception t);
Ejemplo n.º 3
0
 public virtual bool Accepts(IFernflowerLogger.Severity severity)
 {
     return(severity.ordinal() >= this.severity.ordinal());
 }