Skip to content

Commit bc18fde

Browse files
committed
Shortened prefixes for LOG_TAG in classes
1 parent fff1efb commit bc18fde

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
@@ -22,7 +22,7 @@ private Logging() {}
2222

2323
private static String getTag(String tag) {
2424
// isLoggable has a max limit of 23 chars for versions lower than 7.0
25-
return android.os.Build.VERSION.SDK_INT > Build.VERSION_CODES.N ? "TRuntime." + tag : "";
25+
return "TRuntime." + tag;
2626
}
2727

2828
public static void d(String tag, String message) {

0 commit comments

Comments
 (0)