Mercurial Hosting > luan
changeset 1338:5d414f5d34e8
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 17 Feb 2019 04:54:52 -0700 |
parents | 8b61c8c4e07a |
children | f61df1aee8e1 |
files | src/luan/lib/logging/LoggerFactory.java |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/luan/lib/logging/LoggerFactory.java Fri Feb 15 07:14:50 2019 -0700 +++ b/src/luan/lib/logging/LoggerFactory.java Sun Feb 17 04:54:52 2019 -0700 @@ -2,16 +2,16 @@ public abstract class LoggerFactory { - public static LoggerFactory impl = new Log4jFactory(); + public static LoggerFactory implementation = new Log4jFactory(); protected abstract Logger getLoggerImpl(Class cls); protected abstract Logger getLoggerImpl(String name); public static Logger getLogger(Class cls) { - return impl.getLoggerImpl(cls); + return implementation.getLoggerImpl(cls); } public static Logger getLogger(String name) { - return impl.getLoggerImpl(name); + return implementation.getLoggerImpl(name); } }