Compare Logger Level

In this example we shall show you how to compare Logger Level. The logging Level is used to control logging output. Level objects, such as SEVERE, WARNING and INFO are ordered and specified by ordered integers, so in order to compare them, one should perform the following steps:

as described in the code snippet below.
 

package com.javacodegeeks.snippets.core;
import java.util.logging.Level;
 
public class LogLevelComparison {
	
    public static void main(String[] args) {
  Level info = Level.INFO;
  Level warning = Level.WARNING;
  Level finest = Level.FINEST;
 
  // Compare the intValue of the Level
  if (info.intValue() < warning.intValue()) {
System.out.println(info + "(" + info.intValue() + ") is less severe than " +
  warning + "(" + warning.intValue() + ")");
  }
 
  if (finest.intValue() < info.intValue()) {
System.out.println(finest + "(" + finest.intValue() + ") is less severe than " +
  info + "(" + info.intValue()+ ")");
  }
    }
}

Output:

INFO(800) is less severe than WARNING(900)
FINEST(300) is less severe than INFO(800)

 
This was an example of how to compare Logger Level in Java.

Exit mobile version