Skip to content

Commit

Permalink
refactor: fix logger class
Browse files Browse the repository at this point in the history
  • Loading branch information
gotson committed Dec 22, 2023
1 parent 86cdec2 commit be3bdf7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import java.util.function.Function;

class PropertyUtils {
private static final Logger LOGGER = LoggerFactory.getLogger(Archive.class);
private static final Logger LOGGER = LoggerFactory.getLogger(PropertyUtils.class);

static <T> T getPropertyAs(String key, Function<String, T> function, T defaultValue) {
Objects.requireNonNull(defaultValue, "default value must not be null");
Expand Down

0 comments on commit be3bdf7

Please sign in to comment.