com.github.markusbernhardt.xmldoclet.LoggingLevel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xml-doclet Show documentation
Show all versions of xml-doclet Show documentation
Doclet for writing XML file (instead of JavaDoc HTML)
package com.github.markusbernhardt.xmldoclet;
import org.slf4j.Logger;
/**
* Public interface for a logging level class.
*
* @author markus
*/
public interface LoggingLevel {
/**
* Intefrace mehtod.
*
* @param log the logger to log to
* @param message the message to log to the given logger.
*/
void log(Logger log, String message);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy