Skip to content

Commit

Permalink
make FILE_LOG_NAME_FORMATTER public
Browse files Browse the repository at this point in the history
  • Loading branch information
sclassen committed May 4, 2022
1 parent 4974752 commit 55c111a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public final class FileLog {

private static final String DEFAULT_LOGGER_NAME = TextsProvider.ITW + " file-logger";
private static final String TIME_SEPARATOR = OsUtil.isWindows() ? "_" : ":";
private static final SimpleDateFormat FILE_LOG_NAME_FORMATTER = new SimpleDateFormat("yyyy-MM-dd_HH" + TIME_SEPARATOR + "mm" + TIME_SEPARATOR + "ss.S");
public static final SimpleDateFormat FILE_LOG_NAME_FORMATTER = new SimpleDateFormat("yyyy-MM-dd_HH" + TIME_SEPARATOR + "mm" + TIME_SEPARATOR + "ss.S");

private static String logFileNamePrefix;
private static String logFileNamePostfix;
Expand Down

0 comments on commit 55c111a

Please sign in to comment.