Skip to content

Commit 37f0fe7

Browse files
authored
Changing condition statement API version < 26 for log limit (#3822)
* change proper version <=25 for log limit
1 parent ceb740d commit 37f0fe7

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) 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)