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

com.hubspot.imap.utils.LogUtils Maven / Gradle / Ivy

The newest version!
package com.hubspot.imap.utils;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class LogUtils {

  public static Logger loggerWithName(Class klass, String name) {
    return LoggerFactory.getLogger(String.format("%s.%s", klass.getName(), name));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy