This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.stepic.java.module4.logdemo; | |
import java.util.logging.*; | |
import java.util.Arrays; | |
/** | |
* Created by vitaly on 28/09/16. | |
*/ | |
public class LogDemo { | |
private static final Logger LOGGER = Logger.getLogger(LogDemo.class.getName()); |