blob: 05d869f30c4c5c1f19db35a37d92ffce49e11d1c [file] [log] [blame]
package aQute.libg.log;
import java.util.*;
public interface Logger {
void error(String s, Object... args);
void warning(String s, Object... args);
void progress(String s, Object... args);
List<String> getWarnings();
List<String> getErrors();
List<String> getProgress();
boolean isPedantic();
}