We use h.log_action
in many places to log details about actions that happen. In production.ini, handler_stats
is configured to write those details to a separate log file. But they still go to handler_console too. To have them not go there, I think we need a the log_action events to go to a different base logger (e.g. allura.stats) instead of whatever package logger is there (e.g. allura.model.repo_refresh). class StatsHandler
filters by checking for an "action" attribute on the event, but we need a simple way to separate them so that it can be adjusted via the logging ini settings.
I think the
h.log_action
code and related logging configuration can be removed completely. The activity stream is a better way to keep track of actions. And/rest/
api activity in specific generates a lots of unnecessary log entries now.Done along with [#8336]
Related
Tickets:
#8336Upgrade notes:
If you have customized
development.ini
ordocker-dev.ini
for your own site, you will need to remove all thestats
references after the "Logging configuration" section. Remove it from 2keys =
lists, and 1handlers =
list, and the whole[handler_stats]
subsection.