Is there a way to tell to twistd to not log all factory and protocol start and stop. I use many type of protocols and performs a lot of connections ... and my log file grows
The other answers are great, but you can also do this at the logging level only:
import logging logging.getLogger('twisted').setLevel(logging.CRITICAL)