Skip to content

Instantly share code, notes, and snippets.

@Rudge
Created July 15, 2016 12:01
Show Gist options
  • Select an option

  • Save Rudge/2c333e889b7066fbc026fe50a359c43a to your computer and use it in GitHub Desktop.

Select an option

Save Rudge/2c333e889b7066fbc026fe50a359c43a to your computer and use it in GitHub Desktop.
Reload logback in runtime
LoggerContext context = (LoggerContext) LoggerFactory.getILoggerFactory();
context.reset();
JoranConfigurator configurator = new JoranConfigurator();
configurator.setContext(context);
configurator.doConfigure(new FileInputStream(new File(env.getProperty("logging.path"))));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment