If all the logs are written to the same file, over a long period of time it will grow in size and become many MB. We may want to investigate the RotatingFileHandler class which switches logging to a new file when the file exceeds a certain size, and deletes old files (similar to what our Node.js SDK does).
Since logging to a file is working, this could be addressed in a separate issue 🙂
Originally posted by @t1m0thyj in #268 (comment)