startWatch method
void
startWatch()
Starts a Stopwatch in this logger.
This is easy way to track the time between different events.
To pause the stopwatch, call pauseWatch. To finish the watch, call finishWatch.
Implementation
void startWatch() {
_watch.start();
logInfo('Stopwatch started');
}