Merge "Use "," as a recipients divider."
diff --git a/src/com/android/mail/utils/LogUtils.java b/src/com/android/mail/utils/LogUtils.java
index e540cb8..bf407c7 100644
--- a/src/com/android/mail/utils/LogUtils.java
+++ b/src/com/android/mail/utils/LogUtils.java
@@ -92,14 +92,14 @@
* Returns true if the build configuration prevents debug logging.
*/
@VisibleForTesting
- static boolean buildPreventsDebugLogging() {
+ public static boolean buildPreventsDebugLogging() {
return MAX_ENABLED_LOG_LEVEL > VERBOSE;
}
/**
* Returns a boolean indicating whether debug logging is enabled.
*/
- private static boolean isDebugLoggingEnabled() {
+ protected static boolean isDebugLoggingEnabled() {
if (buildPreventsDebugLogging()) {
return false;
}