mod_sentry/sentry.lib.lua
changeset 4291 2c4157785b42
parent 4290 64f400a38a30
child 4292 26bc1ae88ccb
--- a/mod_sentry/sentry.lib.lua	Wed Dec 09 16:11:47 2020 +0000
+++ b/mod_sentry/sentry.lib.lua	Wed Dec 09 16:12:35 2020 +0000
@@ -48,7 +48,9 @@
 		instance_id = instance_id;
 	};
 	for k, v in pairs(context) do
-		data[k] = tostring(v);
+		if k ~= "traceback" then
+			data[k] = tostring(v);
+		end
 	end
 	return data;
 end