1 package org.catacomb.interlish.report;
2
3
4 public interface Logger {
5
6 void log(String s);
7
8 void log(Message m);
9
10 void optionalIncrementLog(int ifr, String string);
11
12 void init(String string);
13
14 void end();
15
16 }