// Start LogFactory implementation
// This is static so both the test and the logger share
private static List<String> messages = new ArrayList<String>();
public Log getLog(String channel) {
return new AbstractLog() {
protected boolean isEnabled(short logLevel) {
return true;
}