blob: 05d869f30c4c5c1f19db35a37d92ffce49e11d1c [file] [log] [blame]
Stuart McCullochf3173222012-06-07 21:57:32 +00001package aQute.libg.log;
2
3import java.util.*;
4
Stuart McCullochf3173222012-06-07 21:57:32 +00005public interface Logger {
Stuart McCulloch4482c702012-06-15 13:27:53 +00006 void error(String s, Object... args);
7
8 void warning(String s, Object... args);
9
10 void progress(String s, Object... args);
11
Stuart McCullochf3173222012-06-07 21:57:32 +000012 List<String> getWarnings();
Stuart McCulloch4482c702012-06-15 13:27:53 +000013
Stuart McCullochf3173222012-06-07 21:57:32 +000014 List<String> getErrors();
Stuart McCulloch4482c702012-06-15 13:27:53 +000015
Stuart McCullochf3173222012-06-07 21:57:32 +000016 List<String> getProgress();
Stuart McCulloch4482c702012-06-15 13:27:53 +000017
Stuart McCullochf3173222012-06-07 21:57:32 +000018 boolean isPedantic();
19}