Skip to content

Commit

Permalink
XIVY-8973 Use SimpleLogger of slf4j from new package
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsuter committed Jul 2, 2024
1 parent e970029 commit 4702ea0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2021 Axon Ivy AG
* Copyright (C) 2024 Axon Ivy AG
*
* 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
Expand All @@ -19,11 +19,11 @@
import java.util.Arrays;
import java.util.List;

import org.slf4j.impl.SimpleLogger;
import org.slf4j.simple.SimpleLogger;

/**
* Sets the logging properties for the ivy engine.
*
*
* @author Reguel Wermelinger
* @since 6.0.0
*/
Expand Down Expand Up @@ -91,7 +91,7 @@ private static void setDefaultProperty(String property, String value) {
}

/**
* Valid levels as documented in {@link org.slf4j.impl.SimpleLogger}
* Valid levels as documented in {@link org.slf4j.simple.SimpleLogger}
*/
static interface Level {
String TRACE = "trace";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import static org.assertj.core.api.Assertions.assertThat;

import org.junit.Test;
import org.slf4j.impl.SimpleLogger;
import org.slf4j.simple.SimpleLogger;

import ch.ivyteam.ivy.maven.engine.Slf4jSimpleEngineProperties;

Expand Down

0 comments on commit 4702ea0

Please sign in to comment.