Skip to content

Commit 68dccd5

Browse files
committed
Remove log
1 parent 7c0f13c commit 68dccd5

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Diff for: app/src/main/java/com/duckduckgo/app/browser/BrowserTabViewModel.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3319,7 +3319,7 @@ class BrowserTabViewModel @Inject constructor(
33193319

33203320
if (!exempted) {
33213321
if (currentBrowserViewState().maliciousSiteBlocked && previousSite?.url == url.toString()) {
3322-
Timber.tag("Cris").d("maliciousSiteBlocked already shown for $url, previousSite: ${previousSite.url}")
3322+
Timber.d("maliciousSiteBlocked already shown for $url, previousSite: ${previousSite.url}")
33233323
} else {
33243324
val params = mapOf(CATEGORY_KEY to feed.name.lowercase(), CLIENT_SIDE_HIT_KEY to clientSideHit.toString())
33253325
pixel.fire(AppPixelName.MALICIOUS_SITE_PROTECTION_ERROR_SHOWN, params)

Diff for: malicious-site-protection/malicious-site-protection-impl/src/main/kotlin/com/duckduckgo/malicioussiteprotection/impl/data/MaliciousSiteRepository.kt

-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ import javax.inject.Inject
5454
import kotlinx.coroutines.TimeoutCancellationException
5555
import kotlinx.coroutines.withContext
5656
import kotlinx.coroutines.withTimeout
57-
import timber.log.Timber
5857

5958
interface MaliciousSiteRepository {
6059
suspend fun getFeedForHashPrefix(hashPrefix: String): Feed?
@@ -169,7 +168,6 @@ class RealMaliciousSiteRepository @Inject constructor(
169168
val revision = latestRevision.getRevisionForFeed(feed)
170169
val data: T? = if (networkRevision > revision) {
171170
if (feed == SCAM && !maliciousSiteProtectionFeature.scamProtectionEnabled()) {
172-
Timber.tag("Cris").d("Scam protection is disabled, skipping scam dataset download")
173171
null
174172
} else {
175173
getFunction(revision)

0 commit comments

Comments
 (0)