Guest User

asdasdas

a guest
Nov 19th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. public static Logger LOGGER = null;
  2.  
  3.  
  4. public static void main(String[] args) {
  5. if(args.length != 2) {
  6. return;
  7. }
  8.  
  9. LOGGER = Logger.getLogger("MyLog");
  10.  
  11. //Vet ej om nödvändigt
  12. SimpleFormatter formatter = new SimpleFormatter();
  13. fh.setFormatter(formatter);
  14.  
  15.  
  16. ...
  17.  
  18. }
  19.  
  20.  
  21. Sen när du vill printa ut något t.ex
  22.  
  23. Othello.LOGGER.info("Depth = " + depth);
Advertisement
Add Comment
Please, Sign In to add comment