1
0
mirror of https://gitcode.com/gh_mirrors/re/react-native-pushy.git synced 2025-11-22 15:36:10 +08:00
Code Issues Packages Projects Releases Wiki Activity GitHub Gitee

Refactor logging in SafeZipFile to use consistent tag format for unzipping messages.

This commit is contained in:
sunnylqm
2025-11-22 01:22:21 +08:00
parent bea0e077a0
commit f941b93cb3

View File

@@ -66,9 +66,8 @@ public class SafeZipFile extends ZipFile {
throw new SecurityException("Illegal name: " + name); throw new SecurityException("Illegal name: " + name);
} }
if (UpdateContext.DEBUG) {
Log.d("RNUpdate", "Unzipping " + name); Log.d("react-native-update", "Unzipping " + name);
}
if (ze.isDirectory()) { if (ze.isDirectory()) {
target.mkdirs(); target.mkdirs();