flysh
Version:
DOM Document Object Artifact Collector
27 lines • 676 B
JavaScript
import { Logger } from "tslog";
/**
* 'Log4TS' class helper
*
* Handles logging activities by using 'tslog' library
*
* TODO : Ask 'ConfigReader' to provide the logfile location, name, size ?
* TODO : Read log file name + path from property file instead
*/
export class Log4TS {
/**
* Constructor
*/
constructor() {
this.log = new Logger();
this.init();
}
/**
* Initialization
*/
init() {
//read from 'ConfigReader' the log files to create (dev/prod)
}
}
Log4TS.LOGFILE_PATH_VALUE = '.\\logs\\'; //was public
Log4TS.LOGFILE_NAME_VALUE = 'flysh.log'; //was public
//# sourceMappingURL=Log4TS.js.map