Is there a way to enable debug level logging, without logging the chat messages? #5220
Unanswered
Jordanb716
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there any way to suppress the logging of generated text, but still output everything else at DEBUG level?
I like DEBUG level log so I can see the details of how the models are getting loaded, and see the causes of any problems that arise, but I greatly dislike that that level also logs the generated text (a line per generated character no less!). It spams the log with a (usually) unnecessary level of detail, clogs up the parts of the log that are actually useful, and is a potential privacy violation without much gain in most scenarios.
Currently it feels like INFO is overly terse, and doesn't tell you basic information about what it's doing, or the causes of common problems that arise, forcing me to go to DEBUG to get any actionable information, but DEBUG is far too verbose because of this log spam.
Beta Was this translation helpful? Give feedback.
All reactions