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;
}