001 package railo.commons.io.log; 002 003 /** 004 * Contains a Log and the source from where is loaded 005 */ 006 public interface LogAndSource extends Log { 007 008 /** 009 * @return Returns the log. 010 */ 011 public abstract Log getLog(); 012 013 /** 014 * @return Returns the source. 015 */ 016 public abstract String getSource(); 017 018 }