This commit is contained in:
Looly
2023-04-12 01:22:54 +08:00
parent d2e5155ac5
commit a96a95c988
216 changed files with 480 additions and 480 deletions

View File

@@ -90,7 +90,7 @@ public class ConsoleColorLog extends ConsoleLog {
@Override
public synchronized void log(final String fqcn, final Level level, final Throwable t, final String format, final Object... arguments) {
if (! isEnabled(level)) {
if (!isEnabled(level)) {
return;
}

View File

@@ -128,7 +128,7 @@ public class ConsoleLog extends AbstractLog {
@Override
public void log(final String fqcn, final Level level, final Throwable t, final String format, final Object... arguments) {
// fqcn 无效
if (! isEnabled(level)) {
if (!isEnabled(level)) {
return;
}

View File

@@ -43,7 +43,7 @@ public class Slf4jLogFactory extends LogFactory {
public Slf4jLogFactory(final boolean failIfNOP) {
super("Slf4j");
checkLogExist(LoggerFactory.class);
if(! failIfNOP){
if(!failIfNOP){
return;
}

View File

@@ -4,10 +4,10 @@
#
##########################################
#
# 项目名 !!!按照实际需要修改!!! 不允许点号,使用 - 分割
# 项目名 !!!按照实际需要修改!!!不允许点号,使用 - 分割
logtube.project=test-hutool
#
# 项目环境 !!!按照实际需要修改!!! 允许的值为 'dev', 'test', 'staging' 和 'prod'
# 项目环境 !!!按照实际需要修改!!!允许的值为 'dev', 'test', 'staging' 和 'prod'
logtube.env=test
#
# 全局主题过滤器,默认设置为不包括 trace 和 debug调试环境可以酌情打开