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 62eace8 commit 9303774Copy full SHA for 9303774
firebase-crashlytics/src/main/java/com/google/firebase/crashlytics/FirebaseCrashlytics.kt
@@ -30,7 +30,7 @@ val Firebase.crashlytics: FirebaseCrashlytics
30
fun FirebaseCrashlytics.setCustomKeys(init: KeyValueBuilder.() -> Unit) =
31
setCustomKeys(KeyValueBuilder().apply(init).build())
32
33
-/* Records a non-fatal report to send to Crashlytics with additional custom keys */
+/** Records a non-fatal report to send to Crashlytics with additional custom keys */
34
fun FirebaseCrashlytics.recordException(throwable: Throwable, init: KeyValueBuilder.() -> Unit) =
35
recordException(throwable, KeyValueBuilder().apply(init).build())
36
0 commit comments