log.hrtime returns a time right now. instead, it should return a function to call. ``` const startTime = log.hrtime() log.timeTaken(startTime, 'message') ``` turns into ``` const hrtime = log.hrtime() hrtime('message') ```