added more logger documentation
This commit is contained in:
parent
1e0c3ff550
commit
e8da31486f
|
@ -7,10 +7,19 @@ import java.time.LocalDateTime;
|
||||||
import java.time.format.DateTimeFormatter;
|
import java.time.format.DateTimeFormatter;
|
||||||
import java.util.logging.*;
|
import java.util.logging.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Utility class for providing a global logger for the entire application instance at runtime
|
||||||
|
*/
|
||||||
public final class Logging {
|
public final class Logging {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Publicly available logger instance.
|
||||||
|
*/
|
||||||
public static final Logger LOGGER = Logger.getLogger(Logging.class.getName());
|
public static final Logger LOGGER = Logger.getLogger(Logging.class.getName());
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Folder the log files are stored in, relative to the file containing the class
|
||||||
|
*/
|
||||||
private static final String LOG_FOLDER_NAME = "logs/";
|
private static final String LOG_FOLDER_NAME = "logs/";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue