Created
March 28, 2021 15:42
-
-
Save gamesbook/7269d1b5b3b9298e8cb87bac80d964d2 to your computer and use it in GitHub Desktop.
Log time for process
This file contains 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
import time | |
import logging | |
logger = logging.getLogger(__name__) | |
t0 = time.process_time() | |
time.sleep(3) | |
logger.warning("Time elapsed: %3.6f", (time.process_time() - t0)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment