org.openrewrite.java.logging.SystemPrintToLogging Maven / Gradle / Ivy
Show all versions of rewrite-logging-frameworks Show documentation
/*
* Copyright 2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.openrewrite.java.logging;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Value;
import org.jspecify.annotations.Nullable;
import org.openrewrite.Option;
import org.openrewrite.Recipe;
import java.util.Arrays;
import java.util.List;
@Value
@EqualsAndHashCode(callSuper = false)
public class SystemPrintToLogging extends Recipe {
@Option(displayName = "Add logger",
description = "Add a logger field to the class if it isn't already present.",
required = false)
@Nullable
Boolean addLogger;
@Option(displayName = "Logger name",
description = "The name of the logger to use when generating a field.",
required = false,
example = "log")
@Nullable
String loggerName;
@Option(displayName = "Logging framework",
description = "The logging framework to use.",
valid = {"SLF4J", "Log4J1", "Log4J2", "JUL", "COMMONS"},
required = false)
@Nullable
String loggingFramework;
@Option(displayName = "Level",
description = "The logging level to turn `System.out` print statements into.",
valid = {"trace", "debug", "info"},
required = false)
@Nullable
String level;
@Getter(lazy = true)
List recipeList = Arrays.asList(
new SystemErrToLogging(addLogger, loggerName, loggingFramework),
new SystemOutToLogging(addLogger, loggerName, loggingFramework, level),
new PrintStackTraceToLogError(addLogger, loggerName, loggingFramework)
);
@Override
public String getDisplayName() {
return "Use logger instead of system print statements";
}
@Override
public String getDescription() {
return "Replace `System.out` and `System.err` print statements with a logger.";
}
}