Skip to content

Instantly share code, notes, and snippets.

@HashRaygoza
Created August 29, 2016 16:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HashRaygoza/71020c73d0e6dafb58cb4e050e8fad45 to your computer and use it in GitHub Desktop.
Save HashRaygoza/71020c73d0e6dafb58cb4e050e8fad45 to your computer and use it in GitHub Desktop.
package bitacora.subnivel;
import java.util.logging.Level;
import java.util.logging.Logger;
public class Utilidades {
private final static Logger LOGGER = Logger.getLogger("bitacora.subnivel.Utilidades");
public void funcionDudosa(){
LOGGER.log(Level.SEVERE, "ERROR MASIVO");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment