Skip to content

Instantly share code, notes, and snippets.

@luiszimmermann
Last active October 18, 2018 19:17
Show Gist options
  • Save luiszimmermann/c9948678230a719a2e1d0b029a37e611 to your computer and use it in GitHub Desktop.
Save luiszimmermann/c9948678230a719a2e1d0b029a37e611 to your computer and use it in GitHub Desktop.
grails stopwatch example
import org.grails.core.util.StopWatch
class IntercomManager {
public void test() {
StopWatch stopWatch = new StopWatch("teste")
stopWatch.start("teste")
//CODE
stopWatch.stop()
println stopWatch.shortSummary()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment