bug(log): RotatingFileHandler.log()
should handle message longer than 4096
#4361
Labels
RotatingFileHandler.log()
should handle message longer than 4096
#4361
Is your feature request related to a problem? Please describe.
I'm using
file_handler
to log user's payload which sometimes longer than 4096 bytes. but thefile_handler
can not handle it correctly. the error message is:Describe the solution you'd like
I home file log handler could handle messages longer than 4096. If the message is longer than 4096, split it into chunks and then write to the log file and flush.
The text was updated successfully, but these errors were encountered: