We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deae525 commit 78bc28dCopy full SHA for 78bc28d
services/src/main/kotlin/spp/probe/services/common/ContextReceiver.kt
@@ -236,7 +236,8 @@ object ContextReceiver {
236
map[varName] = value.javaClass.name + "@" + Integer.toHexString(System.identityHashCode(value))
237
map["@class"] = "java.lang.Class"
238
map["@id"] = Integer.toHexString(System.identityHashCode(value))
239
- map["@ex"] = ex.message
+ map["@skip"] = "EXCEPTION_OCCURRED"
240
+ map["@cause"] = ex.message
241
return ModelSerializer.INSTANCE.toJson(map)
242
} catch (ignore: Exception) {
243
}
0 commit comments