View Javadoc
1   package eu.simuline.m2latex.core;
2   
3   // TBD: reactivate:
4   // * @see eu.simuline.m2latex.mojo.MavenLogWrapper
5   // * @see eu.simuline.m2latex.antTask.AntLogWrapper
6   
7   /**
8    * Common interface for logging in ant task and in maven plugin.
9    *
10   * Created: Fri Oct 7 00:40:27 2016
11   *
12   * @author <a href="mailto:rei3ner@arcor.de">Ernst Reissner</a>
13   * @version 1.0
14   */
15  public interface LogWrapper {
16  
17    public void error(String msg);
18  
19    public void warn(String msg);
20  
21    public void warn(String msg, Throwable thrw);
22  
23    public void info(String msg);
24    //void verbose(String msg);
25  
26    // short for debug(null, msg)
27    public void debug(String msg);
28    //public void debug(String msg, Throwable thrw);
29  
30  }