How to disable logging in CherryPy?

Disabling File Logging in CherryPy : To disable file logging in CherryPy, simply set an empty string to the log.access_file or log.error_file keys in your global configuration.
cherrypy.config.update({'log.access_file': '',
                        'log.error_file': ''})​

Disabling Console Logging in CherryPy : To disable Console logging in CherryPy, simply set log.screen to False in your global configuration.
cherrypy.config.update({'log.screen': False})​