import java.io.*; import java.util.logging.*; public class SetSimpleFormatter{ public static void main(String[] args) { SetSimpleFormatter f = new SetSimpleFormatter(); } public SetSimpleFormatter(){ Logger log = Logger.getLogger("RoseIndia.Net"); try{ FileHandler fhand = new FileHandler("NewLogFile.log", true); fhand.setFormatter(new SimpleFormatter()); log.addHandler(fhand); log.info("This is info message"); log.warning("This is warning message"); } catch (IOException e){} } }