Skip to content

Instantly share code, notes, and snippets.

View vishnusakhamuri's full-sized avatar
💭
complex programs built over time. refactor regularly

vishnu prasad vishnusakhamuri

💭
complex programs built over time. refactor regularly
  • Amdocs
  • Pune, India
View GitHub Profile
@darbyluv2code
darbyluv2code / MyLoggerConfig.java
Last active February 5, 2023 06:34
Spring Logging for Spring 5.1 - XML Configuration
package com.luv2code.springdemo;
import java.util.logging.ConsoleHandler;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.logging.SimpleFormatter;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
public class MyLoggerConfig {