You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on the given examples, I'm not quite sure what the problem is (explicit newlines in logging statements? newlines in general?). But I'm not against cleaning up the logging code, so feel free to put up a pull request.
Looking at these examples, some parts of the logging could use a general rework. Like, is it really useful to log the entire mediapackage after every request? But that's a different issue ^^'
The log file
/var/log/bigbluebutton/post_archive.log
is hard to work with, because some entries contain newlines.Here we have an explicit newline but also
dublincore.to_s
is a multi-line string. Similar problem with the output ofresponse
.In
BigBlueButton.logger.info( "Mediapackage: \n" + mediapackage)
just removing\n
should be enough.Another simple one.
The text was updated successfully, but these errors were encountered: