Skip to content

Instantly share code, notes, and snippets.

@shelajev
Created May 10, 2018 12:18
Show Gist options
  • Select an option

  • Save shelajev/43659cd048a7eb4da849a245ddd728c4 to your computer and use it in GitHub Desktop.

Select an option

Save shelajev/43659cd048a7eb4da849a245ddd728c4 to your computer and use it in GitHub Desktop.
public class LogHolder {
private static final Log LOG =
LogFactory.getLog(SpringRApplication.class);
public static void log(double value, Object... args) {
LOG.info(String.format("Logging (value = %s): %s", value,
Arrays.toString(args)));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment