Skip to content

Instantly share code, notes, and snippets.

@HashRaygoza
Created August 29, 2016 16:09
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/c3e455a428ecc5223bc93f9848b6a111 to your computer and use it in GitHub Desktop.
Save HashRaygoza/c3e455a428ecc5223bc93f9848b6a111 to your computer and use it in GitHub Desktop.
package bitacora.subnivel;
import java.util.logging.Level;
import java.util.logging.Logger;
public class Control {
private final static Logger LOGGER = Logger.getLogger("bitacora.subnivel.Control");
public void controlar(){
LOGGER.log(Level.INFO, "Proceso exitoso");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment