LogNode.java (689B)
1 package de.nordgedanken.rpicms.common.logger; 2 3 /** 4 * Created by frank on 14.10.14. 5 */ 6 public interface LogNode { 7 8 /** 9 * Instructs first LogNode in the list to print the log data provided. 10 * @param priority Log level of the data being logged. Verbose, Error, etc. 11 * @param tag Tag for for the log data. Can be used to organize log statements. 12 * @param msg The actual message to be logged. The actual message to be logged. 13 * @param tr If an exception was thrown, this can be sent along for the logging facilities 14 * to extract and print useful information. 15 */ 16 public void println(int priority, String tag, String msg, Throwable tr); 17 18 }