diff options
author | 2024-05-17 04:52:40 +0000 | |
---|---|---|
committer | 2024-05-17 04:53:52 +0000 | |
commit | ae221f0e91e92615bcc52472c7e13cd90b3605d3 (patch) | |
tree | 82e4b3c869a824e99c5329d65ee241611c49f993 | |
parent | ba29f64254e1dcbbd19106fc26cc4067e782c088 (diff) |
Update logging tag name of LegacyMediaProvider
Change-Id: I9cba95b4ee9843abe567f4af78dceff9b7947390
Test: n/a
Bug: 341190735
-rw-r--r-- | legacy/src/com/android/providers/media/LegacyDatabaseHelper.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/legacy/src/com/android/providers/media/LegacyDatabaseHelper.java b/legacy/src/com/android/providers/media/LegacyDatabaseHelper.java index 9f85763b6..e13a39466 100644 --- a/legacy/src/com/android/providers/media/LegacyDatabaseHelper.java +++ b/legacy/src/com/android/providers/media/LegacyDatabaseHelper.java @@ -16,8 +16,6 @@ package com.android.providers.media; -import static com.android.providers.media.util.Logging.TAG; - import android.content.ContentValues; import android.content.Context; import android.content.Intent; @@ -68,6 +66,8 @@ import java.util.regex.Matcher; * on demand, create and upgrade the schema, etc. */ public class LegacyDatabaseHelper extends SQLiteOpenHelper implements AutoCloseable { + + private static final String TAG = "LegacyMediaProvider"; @VisibleForTesting static final String TEST_RECOMPUTE_DB = "test_recompute"; @VisibleForTesting |