This function logs every time it writes to stdout "Wrote n bytes." I want to disable its logging as I have thousands of files I'm writing and it floods the log with meaningless information. Does anyone know if it's possible?
Thanks for the reply!Would that code solution be per thread or would it only work on stdout globally?I basically have a thread pool doing the work, and I need all the output except fs.put. If it disables it globally I may lose output while it's perfo...