diff options
| -rw-r--r-- | services/core/java/com/android/server/appop/HistoricalRegistry.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/services/core/java/com/android/server/appop/HistoricalRegistry.java b/services/core/java/com/android/server/appop/HistoricalRegistry.java index 0ab6c4a17032..8b72be78a7f6 100644 --- a/services/core/java/com/android/server/appop/HistoricalRegistry.java +++ b/services/core/java/com/android/server/appop/HistoricalRegistry.java @@ -491,7 +491,7 @@ final class HistoricalRegistry { synchronized (mInMemoryLock) { if (mMode == AppOpsManager.HISTORICAL_MODE_ENABLED_ACTIVE) { if (!isPersistenceInitializedMLocked()) { - Slog.e(LOG_TAG, "Interaction before persistence initialized"); + Slog.v(LOG_TAG, "Interaction before persistence initialized"); return; } getUpdatedPendingHistoricalOpsMLocked( @@ -509,7 +509,7 @@ final class HistoricalRegistry { synchronized (mInMemoryLock) { if (mMode == AppOpsManager.HISTORICAL_MODE_ENABLED_ACTIVE) { if (!isPersistenceInitializedMLocked()) { - Slog.e(LOG_TAG, "Interaction before persistence initialized"); + Slog.v(LOG_TAG, "Interaction before persistence initialized"); return; } getUpdatedPendingHistoricalOpsMLocked( @@ -525,7 +525,7 @@ final class HistoricalRegistry { synchronized (mInMemoryLock) { if (mMode == AppOpsManager.HISTORICAL_MODE_ENABLED_ACTIVE) { if (!isPersistenceInitializedMLocked()) { - Slog.e(LOG_TAG, "Interaction before persistence initialized"); + Slog.v(LOG_TAG, "Interaction before persistence initialized"); return; } getUpdatedPendingHistoricalOpsMLocked( @@ -604,7 +604,7 @@ final class HistoricalRegistry { final List<HistoricalOps> pendingWrites; synchronized (mInMemoryLock) { if (!isPersistenceInitializedMLocked()) { - Slog.e(LOG_TAG, "Interaction before persistence initialized"); + Slog.d(LOG_TAG, "Interaction before persistence initialized"); return; } // The history files start from mBaseSnapshotInterval - take this into account. @@ -623,7 +623,7 @@ final class HistoricalRegistry { void resetHistoryParameters() { if (!isPersistenceInitializedMLocked()) { - Slog.e(LOG_TAG, "Interaction before persistence initialized"); + Slog.d(LOG_TAG, "Interaction before persistence initialized"); return; } setHistoryParameters(DEFAULT_MODE, DEFAULT_SNAPSHOT_INTERVAL_MILLIS, @@ -635,7 +635,7 @@ final class HistoricalRegistry { synchronized (mOnDiskLock) { synchronized (mInMemoryLock) { if (!isPersistenceInitializedMLocked()) { - Slog.e(LOG_TAG, "Interaction before persistence initialized"); + Slog.d(LOG_TAG, "Interaction before persistence initialized"); return; } if (mMode != AppOpsManager.HISTORICAL_MODE_ENABLED_ACTIVE) { @@ -668,7 +668,7 @@ final class HistoricalRegistry { synchronized (mOnDiskLock) { synchronized (mInMemoryLock) { if (!isPersistenceInitializedMLocked()) { - Slog.e(LOG_TAG, "Interaction before persistence initialized"); + Slog.d(LOG_TAG, "Interaction before persistence initialized"); return; } clearHistoryOnDiskDLocked(); |