File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
features/dd-sdk-android-rum/src/main/kotlin/com/datadog/android/rum/internal/domain/scope Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 66
77package com.datadog.android.rum.internal.domain.scope
88
9+ import android.util.Log
910import androidx.annotation.WorkerThread
1011import com.datadog.android.api.InternalLogger
1112import com.datadog.android.api.context.DatadogContext
@@ -1702,11 +1703,11 @@ internal open class RumViewScope(
17021703 }
17031704
17041705 private fun logSynthetics (key : String , value : String ) {
1705- sdkCore.internalLogger.log(
1706- level = InternalLogger . Level . INFO ,
1707- target = InternalLogger . Target . USER ,
1708- messageBuilder = { " $key = $value " }
1709- )
1706+ /* *
1707+ * We use [android.util.Log] here instead of [ InternalLogger] because we want to log regardless of the
1708+ * verbosity level set using [com.datadog.android.Datadog.setVerbosity].
1709+ */
1710+ Log .i( " DatadogSynthetics " , " $key = $value " )
17101711 }
17111712
17121713 // endregion
You can’t perform that action at this time.
0 commit comments