rails_tracepoint_stack
rails_tracepoint_stack copied to clipboard
A formatted output of all methods called in your rails application of code created by the developer, with the complete path to the class/module, including passed params.
Following is my config: ``` RailsTracepointStack.configure do |config| config.log_format = :json config.log_external_sources = false config.logger = Logger.new(STDOUT) end ``` My application is very big. On rails console when I wrap...
Following feedback is not so intuitive that the logs are saved by default on `log/rails_tracepoint_stack.log`, so would be useful to have a warning. The message also can advise the high...
Currently, a [trace]( https://github.com/carlosdanielpohlod/rails_tracepoint_stack/blob/main/lib/rails_tracepoint_stack/trace.rb) is shown on [log_formatter.rb](https://github.com/carlosdanielpohlod/rails_tracepoint_stack/blob/main/lib/rails_tracepoint_stack/log_formatter.rb) . An interesting enhancement is to colorize each trace by the class type (model, controller, service, etc), Also, adding special colors for...