Skip to content

Commit 8cad52f

Browse files
committed
change proper version <=25 for log limit
1 parent 85272b6 commit 8cad52f

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
@@ -24,7 +24,7 @@ public final class Logging {
2424
private Logging() {}
2525

2626
private static String getTag(String tag) {
27-
if (android.os.Build.VERSION.SDK_INT <= Build.VERSION_CODES.N_MR1) return concatTag(LOG_PREFIX, tag);
27+
if (android.os.Build.VERSION.SDK_INT < Build.VERSION_CODES.O) return concatTag(LOG_PREFIX, tag);
2828

2929
return LOG_PREFIX + tag;
3030
}

0 commit comments

Comments
 (0)