Skip to content
This repository has been archived by the owner on Jul 11, 2021. It is now read-only.

Commit

Permalink
Wrong Logger import in Interpreter
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvainhalle committed Apr 24, 2018
1 parent ce6b66a commit 2cfab18
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Source/Server/src/ca/uqac/lif/cornipickle/Interpreter.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
Cornipickle, validation of layout bugs in web applications
Copyright (C) 2015-2016 Sylvain Hallé
Copyright (C) 2015-2018 Sylvain Hallé
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand All @@ -27,11 +27,10 @@
import java.util.Map;
import java.util.Set;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import com.sun.istack.internal.logging.Logger;

import ca.uqac.lif.azrael.SerializerException;
import ca.uqac.lif.cornipickle.CornipickleParser.ParseException;
import ca.uqac.lif.cornipickle.serialization.CornipickleDeflateSerializer;
Expand All @@ -57,7 +56,7 @@ public class Interpreter implements Originator<Interpreter,String>
/**
* A global logger instance to trap exceptions throughout the program
*/
public static final transient Logger LOGGER = Logger.getLogger(Interpreter.class);
public static final transient Logger LOGGER = Logger.getAnonymousLogger();

public Interpreter()
{
Expand Down

0 comments on commit 2cfab18

Please sign in to comment.