Make verbose logging an advanced config option (Fixes Tautulli/Tautulli-Issues#205)

* Verbose logging is enabled by default
* Make toggleVerbose stick
This commit is contained in:
JonnyWong16 2020-01-20 20:49:37 -08:00
parent e90390be67
commit b9d5e49a71
4 changed files with 12 additions and 5 deletions

View file

@ -2667,8 +2667,11 @@ class WebInterface(object):
@requireAuth(member_of("admin"))
def toggleVerbose(self, **kwargs):
plexpy.VERBOSE = not plexpy.VERBOSE
logger.initLogger(console=not plexpy.QUIET,
log_dir=plexpy.CONFIG.LOG_DIR, verbose=plexpy.VERBOSE)
plexpy.CONFIG.__setattr__('VERBOSE_LOGS', plexpy.VERBOSE)
plexpy.CONFIG.write()
logger.initLogger(console=not plexpy.QUIET, log_dir=plexpy.CONFIG.LOG_DIR, verbose=plexpy.VERBOSE)
logger.info(u"Verbose toggled, set to %s", plexpy.VERBOSE)
logger.debug(u"If you read this message, debug logging is available")
raise cherrypy.HTTPRedirect(plexpy.HTTP_ROOT + "logs")