
com.chimpcentral.archive.Logger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logger Show documentation
Show all versions of logger Show documentation
Logger to create HTML and TEXT logs
package com.chimpcentral.archive;
class Logger {
private LoggerInfo loggerInfo = null;
public MainLog mainLog = null;
public Logger() {
this.loggerInfo = new LoggerInfo();
}
public Logger(SearchableOptions userOptions) {
this.loggerInfo = new LoggerInfo(userOptions);
}
public LoggerInfo getLoggerInfo() {
return this.loggerInfo;
}
public Log createLog() {
mainLog = new MainLog();
return mainLog;
}
public Log getMainLog() {
return this.mainLog;
}
public void flush() {
Compiler compiler = new Compiler(this);
compiler.compile();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy