Skip to content

Instantly share code, notes, and snippets.

View fjl's full-sized avatar
💭
prog ramming

Felix Lange fjl

💭
prog ramming
View GitHub Profile
-module(stacktrace_filter).
-compile(export_all).
t() ->
try
sensitive_data_function()
catch
Error:Reason ->
{Error, Reason, erlang:get_stacktrace()}
end.