All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibatis.common.logging.jdk14.Jdk14LoggingImpl Maven / Gradle / Ivy

There is a newer version: 3.0-beta-10
Show newest version
package com.ibatis.common.logging.jdk14;

import java.util.logging.Logger;
import java.util.logging.Level;

public class Jdk14LoggingImpl implements com.ibatis.common.logging.Log {

    private Logger log;

    public Jdk14LoggingImpl(Class clazz) {
       log = Logger.getLogger(clazz.getName());
    }

    public boolean isDebugEnabled() {
      return log.isLoggable(Level.FINE);
    }

    public void error(String s, Throwable e) {
      log.log(Level.SEVERE, s, e);
    }

    public void error(String s) {
      log.log(Level.SEVERE, s);
    }

    public void debug(String s) {
      log.log(Level.FINE, s);
    }

    public void warn(String s) {
      log.log(Level.WARNING, s);
    }


  }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy