Skip to content

Instantly share code, notes, and snippets.

@ntxinh
Last active February 3, 2018 04:02
Show Gist options
  • Save ntxinh/aea7450d888e80dc6d4d6e883264f05f to your computer and use it in GitHub Desktop.
Save ntxinh/aea7450d888e80dc6d4d6e883264f05f to your computer and use it in GitHub Desktop.
Java - Logging
// 1 Param
LOGGER.log(Level.INFO, "Hello {0}", "World"});
// Many params
LOGGER.log(Level.INFO, "Hello {0} {1}", new Object[] {"World", "!"});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment