Skip to content

Instantly share code, notes, and snippets.

@JosuaKrause
Last active August 29, 2015 14:13
Show Gist options
  • Save JosuaKrause/1711e5e2c07b72063516 to your computer and use it in GitHub Desktop.
Save JosuaKrause/1711e5e2c07b72063516 to your computer and use it in GitHub Desktop.
package foo;
import java.util.logging.Level;
import java.util.logging.Logger;
public final class Foo {
/** The logger. */
private static final Logger LOGGER = Logger.getLogger(Foo.class.getName()); // one logger per class
public void foo() {
LOGGER.log(Level.INFO, "bar");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment