Skip to content

Commit 4e57806

Browse files
committed
Shortened prefix and capped concatenated string
1 parent 8edb5f6 commit 4e57806

File tree

1 file changed

+1
-1
lines changed
  • transport/transport-runtime/src/main/java/com/google/android/datatransport/runtime/logging

1 file changed

+1
-1
lines changed

transport/transport-runtime/src/main/java/com/google/android/datatransport/runtime/logging/Logging.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ private static String getTag(String tag) {
2727
if(android.os.Build.VERSION.SDK_INT < Build.VERSION_CODES.N)
2828
return concatTag(LOG_PREFIX, tag);
2929

30-
return MAX_LOG_TAG_SIZE_IN_SDK_N + tag;
30+
return LOG_PREFIX + tag;
3131
}
3232

3333
private static String concatTag(String prefix, String tag){

0 commit comments

Comments
 (0)