com.github.kunalk16.excel.utils.logger.ExcelReaderLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lightExcelReader Show documentation
Show all versions of lightExcelReader Show documentation
A lightweight Java framework to read .xlsx excel files.
The newest version!
package com.github.kunalk16.excel.utils.logger;
public class ExcelReaderLogger {
private final ExcelLogger excelLogger;
private ExcelReaderLogger() {
this.excelLogger = new ExcelLogger();
}
public static ExcelLogger getInstance() {
return ExcelReaderLoggerInstanceHolder.INSTANCE.excelLogger;
}
public static void enableLogging(boolean loggingEnabled) {
ExcelReaderLoggerInstanceHolder.INSTANCE.excelLogger.enableLogging(loggingEnabled);
}
private static class ExcelReaderLoggerInstanceHolder {
private static final ExcelReaderLogger INSTANCE = new ExcelReaderLogger();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy