I want to log how long something takes in real walltime. Currently I\'m doing this:
startTime = time.time() someSQLOrSomething() print \"That took %.3f secon
Now, in Python 3.3 you would use time.monotonic.