Skip to content

Commit

Permalink
Fix logging statement
Browse files Browse the repository at this point in the history
  • Loading branch information
logresearch authored Jul 3, 2024
1 parent cc377cb commit 40094d7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public List<AppDataParcelable> loadInBackground() {
try {
androidInfo = packageManager.getPackageInfo("android", PackageManager.GET_SIGNATURES);
} catch (PackageManager.NameNotFoundException e) {
LOG.warn("faield to find android package name while loading apps list", e);
LOG.warn("failed to find android package name while loading apps list", e);
}

for (ApplicationInfo object : apps) {
Expand All @@ -99,7 +99,7 @@ public List<AppDataParcelable> loadInBackground() {
try {
info = packageManager.getPackageInfo(object.packageName, PackageManager.GET_SIGNATURES);
} catch (PackageManager.NameNotFoundException e) {
LOG.warn("faield to find package name {} while loading apps list", object.packageName, e);
LOG.warn("failed to find package name {} while loading apps list", object.packageName, e);
info = null;
}
boolean isSystemApp = isAppInSystemPartition(object) || isSignedBySystem(info, androidInfo);
Expand Down

0 comments on commit 40094d7

Please sign in to comment.