From c9ee5a389a8e5f9db56742a2d41eae2c912e6612 Mon Sep 17 00:00:00 2001 From: Martin Hibdon Date: Thu, 9 Jan 2014 11:22:45 -0800 Subject: [PATCH] Fix a crashing log line b/12471608 Change-Id: I6d78c21c362f83322bf156e59ccb0935ff572772 --- src/com/android/email/provider/EmailProvider.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/com/android/email/provider/EmailProvider.java b/src/com/android/email/provider/EmailProvider.java index 0165ba586..d604f9cbd 100644 --- a/src/com/android/email/provider/EmailProvider.java +++ b/src/com/android/email/provider/EmailProvider.java @@ -1317,8 +1317,7 @@ public class EmailProvider extends ContentProvider { // TODO: There are actually cases where c == null is expected, for example // UI_FOLDER_LOAD_MORE. // Demoting this to a warning for now until we figure out what to do with it. - LogUtils.w(TAG, "Query returning null for uri: " + uri + ", selection: " - + selection); + LogUtils.w(TAG, "Query returning null for uri: %s selection: %s", uri, selection); } }