We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would it be nice to add a getter for custom data into Formatter?
def custom_data return unless env custom_data = env["exception_notifier.exception_data"] || {} return if custom_data.empty? text = [] text << '```' custom_data.each { |key, value| text << "* #{key} : #{value}" } text << '```' text.join("\n") end
Nice to have a method to get formatted custom data
Formatter method for custom data is missed
Rails version: 6.0.3.1 Ruby version: 2.6.4
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Would it be nice to add a getter for custom data into Formatter?
Expected behavior
Nice to have a method to get formatted custom data
Actual behavior
Formatter method for custom data is missed
System configuration
Rails version:
6.0.3.1
Ruby version:
2.6.4
The text was updated successfully, but these errors were encountered: