Skip to content

Commit eba926f

Browse files
committed
🥅 Throw readable stack trace instead of describer
1 parent 5f43dd7 commit eba926f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

android/src/main/kotlin/com/astrox/secure_p256_plugin/SecureP256Plugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class SecureP256Plugin : FlutterPlugin, MethodCallHandler {
101101
else -> result.notImplemented()
102102
}
103103
} catch (e: Throwable) {
104-
result.error(e.javaClass.name, e.message, e.stackTrace.toString())
104+
result.error(e.javaClass.name, e.message, e.stackTraceToString())
105105
}
106106
}
107107

0 commit comments

Comments
 (0)