@@ -13,7 +13,7 @@ JNIEXPORT void JNICALL Java_io_sentry_ndk_sample_NdkSample_crash(JNIEnv *env, jc
13
13
}
14
14
15
15
JNIEXPORT void JNICALL Java_io_sentry_ndk_sample_NdkSample_message (JNIEnv *env, jclass cls) {
16
- __android_log_print (ANDROID_LOG_WARN , TAG, " Sending message." );
16
+ __android_log_print (ANDROID_LOG_INFO , TAG, " Sending message." );
17
17
sentry_value_t event = sentry_value_new_message_event (
18
18
/* level */ SENTRY_LEVEL_INFO,
19
19
/* logger */ " custom" ,
@@ -23,7 +23,7 @@ JNIEXPORT void JNICALL Java_io_sentry_ndk_sample_NdkSample_message(JNIEnv *env,
23
23
}
24
24
25
25
JNIEXPORT void JNICALL Java_io_sentry_ndk_sample_NdkSample_transaction (JNIEnv *env, jclass cls) {
26
- __android_log_print (ANDROID_LOG_WARN , TAG, " Sending transaction." );
26
+ __android_log_print (ANDROID_LOG_INFO , TAG, " Sending transaction." );
27
27
28
28
sentry_transaction_context_t *tx_ctx
29
29
= sentry_transaction_context_new (" little.teapot" ,
@@ -46,9 +46,9 @@ JNIEXPORT void JNICALL Java_io_sentry_ndk_sample_NdkSample_transaction(JNIEnv *e
46
46
sentry_span_finish (child);
47
47
sentry_uuid_s uuid = sentry_transaction_finish (tx);
48
48
if (sentry_uuid_is_nil (&uuid)) {
49
- __android_log_print (ANDROID_LOG_WARN, TAG, " Transaction failed to send ." );
49
+ __android_log_print (ANDROID_LOG_WARN, TAG, " Transaction was not sent ." );
50
50
} else {
51
- __android_log_print (ANDROID_LOG_WARN , TAG, " Transaction sent." );
51
+ __android_log_print (ANDROID_LOG_INFO , TAG, " Transaction sent." );
52
52
53
53
}
54
54
0 commit comments