Logger.java

  1. /*
  2.  * Copyright 2010-2022 the original author or authors.
  3.  *
  4.  * Licensed under the Apache License, Version 2.0 (the "License");
  5.  * you may not use this file except in compliance with the License.
  6.  * You may obtain a copy of the License at
  7.  *
  8.  *    https://www.apache.org/licenses/LICENSE-2.0
  9.  *
  10.  * Unless required by applicable law or agreed to in writing, software
  11.  * distributed under the License is distributed on an "AS IS" BASIS,
  12.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  * See the License for the specific language governing permissions and
  14.  * limitations under the License.
  15.  */
  16. package org.mybatis.logging;

  17. import java.util.function.Supplier;

  18. import org.apache.ibatis.logging.Log;

  19. /**
  20.  * Wrapper of {@link Log}, allow log with lambda expressions.
  21.  *
  22.  * @author Putthiphong Boonphong
  23.  */
  24. public class Logger {

  25.   private final Log log;

  26.   Logger(Log log) {
  27.     this.log = log;
  28.   }

  29.   public void error(Supplier<String> s, Throwable e) {
  30.     log.error(s.get(), e);
  31.   }

  32.   public void error(Supplier<String> s) {
  33.     log.error(s.get());
  34.   }

  35.   public void warn(Supplier<String> s) {
  36.     log.warn(s.get());
  37.   }

  38.   public void debug(Supplier<String> s) {
  39.     if (log.isDebugEnabled()) {
  40.       log.debug(s.get());
  41.     }
  42.   }

  43.   public void trace(Supplier<String> s) {
  44.     if (log.isTraceEnabled()) {
  45.       log.trace(s.get());
  46.     }
  47.   }

  48. }