Skip to content

Commit

Permalink
Fix logger package name in Vips class
Browse files Browse the repository at this point in the history
  • Loading branch information
dbouron committed Mar 26, 2021
1 parent 09ea398 commit 18d09a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/criteo/vips/Vips.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.util.logging.Logger;

public class Vips {
private static final Logger LOGGER = Logger.getLogger("com.criteo.thirdparty.Vips");
private static final Logger LOGGER = Logger.getLogger("com.criteo.vips.Vips");
private static final String SYSTEM_NAME = System.getProperty("os.name").toLowerCase();

private static final String[] LINUX_LIBRARIES = {
Expand Down

0 comments on commit 18d09a1

Please sign in to comment.