Skip to content

Commit 27bcee2

Browse files
committed
fix rebase
1 parent 1879f99 commit 27bcee2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

instrumentation/resources/library/src/main/java/io/opentelemetry/instrumentation/resources/internal/ManifestResourceExtractor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
package io.opentelemetry.instrumentation.resources.internal;
77

8-
import static java.util.logging.Level.WARNING;
8+
import static java.util.logging.Level.FINE;
99

1010
import io.opentelemetry.api.common.Attributes;
1111
import io.opentelemetry.api.common.AttributesBuilder;
@@ -77,7 +77,7 @@ private static Optional<Manifest> readManifest(Path jarPath) {
7777
try (JarFile jarFile = new JarFile(jarPath.toFile(), false)) {
7878
return Optional.of(jarFile.getManifest());
7979
} catch (IOException exception) {
80-
logger.log(WARNING, "Error reading manifest", exception);
80+
logger.log(FINE, "Error reading manifest", exception);
8181
return Optional.empty();
8282
}
8383
}

0 commit comments

Comments
 (0)