Created
May 10, 2018 12:18
-
-
Save shelajev/43659cd048a7eb4da849a245ddd728c4 to your computer and use it in GitHub Desktop.
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
| 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