summaryrefslogtreecommitdiffstats
path: root/unified_src
diff options
context:
space:
mode:
authorPaul Westbrook <pwestbro@google.com>2012-06-25 11:42:46 -0700
committerPaul Westbrook <pwestbro@google.com>2012-06-25 16:28:08 -0700
commitb334c9035e9b7a38766bb66c29da2208525d1e11 (patch)
tree58ec097e70d80199f6ee5bfe2b2b008b2b04adb1 /unified_src
parent1eb955e576536f4a7e61c82d8a3a3442c1686397 (diff)
downloadandroid_packages_apps_UnifiedEmail-b334c9035e9b7a38766bb66c29da2208525d1e11.tar.gz
android_packages_apps_UnifiedEmail-b334c9035e9b7a38766bb66c29da2208525d1e11.tar.bz2
android_packages_apps_UnifiedEmail-b334c9035e9b7a38766bb66c29da2208525d1e11.zip
Changes to support different Log tags
Change-Id: I7121fbf7132444fc0f5c0c130373e3f2d1a3cf7a
Diffstat (limited to 'unified_src')
-rw-r--r--unified_src/com/android/mail/utils/LogTag.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/unified_src/com/android/mail/utils/LogTag.java b/unified_src/com/android/mail/utils/LogTag.java
new file mode 100644
index 000000000..01e2cf84d
--- /dev/null
+++ b/unified_src/com/android/mail/utils/LogTag.java
@@ -0,0 +1,28 @@
+/**
+ * Copyright (c) 2012, Google Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.mail.utils;
+
+public class LogTag {
+ private static String LOG_TAG = "UnifiedEmail";
+
+ /**
+ * Get the log tag to apply to logging.
+ */
+ public static String getLogTag() {
+ return LOG_TAG;
+ }
+}