This commit is contained in:
Looly
2023-04-12 01:18:11 +08:00
parent bc601ca0ad
commit d2e5155ac5
205 changed files with 500 additions and 492 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 (false == 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 (false == 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(false == failIfNOP){
if(! failIfNOP){
return;
}