![JAR search and dependency download from the Maven repository](/logo.png)
com.mailgun.util.ConsoleLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mailgun-java Show documentation
Show all versions of mailgun-java Show documentation
The Mailgun SDK for Java enables Java developers to work with Mailgun API
efficiently.
The newest version!
package com.mailgun.util;
import feign.Logger;
import lombok.extern.slf4j.Slf4j;
@Slf4j
public class ConsoleLogger extends Logger {
@Override
protected void log(String configKey, String format, Object... args) {
log.info(String.format(String.format("%s%s", methodTag(configKey), format), args));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy