Remove logging of application and package names, as this is personal user data

This commit is contained in:
albexk 2024-04-22 16:56:27 +03:00
parent 477d7214c5
commit b868831bcb
4 changed files with 3 additions and 5 deletions

View file

@ -118,12 +118,12 @@ abstract class Protocol {
}
for (app in config.includedApplications) {
Log.d(TAG, "addAllowedApplication: $app")
Log.d(TAG, "addAllowedApplication")
vpnBuilder.addAllowedApplication(app)
}
for (app in config.excludedApplications) {
Log.d(TAG, "addDisallowedApplication: $app")
Log.d(TAG, "addDisallowedApplication")
vpnBuilder.addDisallowedApplication(app)
}

View file

@ -511,7 +511,7 @@ class AmneziaActivity : QtActivity() {
@Suppress("unused")
fun getAppIcon(packageName: String, width: Int, height: Int): Bitmap {
Log.v(TAG, "Get app icon: $packageName")
Log.v(TAG, "Get app icon")
return AppListProvider.getAppIcon(packageManager, packageName, width, height)
}
}