Skip to content

Instantly share code, notes, and snippets.

@iamrajendra
Created April 15, 2018 16:14
Show Gist options
  • Save iamrajendra/c7abf626074f926539eae89d8dfd584b to your computer and use it in GitHub Desktop.
Save iamrajendra/c7abf626074f926539eae89d8dfd584b to your computer and use it in GitHub Desktop.
import java.util.logging.Logger;
public class MyClass {
private final static Logger logger;
public MyClass(Logger logger) {
this.logger = logger;
// write an info log message
logger.info("This is a log message.")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment