Created
May 6, 2016 11:18
-
-
Save croucha/6a97a2ac635fee1dbc157de63806022a 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
// Define start time | |
Long start = System.currentTimeMillis(); | |
// Run a bunch of things.... | |
// Define total | |
Long total = start - System.currentTimeMillis(); | |
// Debug | |
logger.debug("Query time in milliseconds: " + total); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment