Remove unneeded log output

This commit is contained in:
MM20 2021-12-07 11:14:29 +01:00
parent 201cbe7959
commit 9b4028f9f8
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -259,9 +259,6 @@ class UpdateIconPacksWorker(val context: Context) {
val drawable = val drawable =
parser.getAttributeResourceValue(null, "drawable", 0).toString() parser.getAttributeResourceValue(null, "drawable", 0).toString()
val pkg = parser.getAttributeValue(null, "package") val pkg = parser.getAttributeValue(null, "package")
for (i in 0 until parser.attributeCount) {
Log.d("MM20", "${parser.getAttributeName(0)}")
}
val componentName = ComponentName(pkg, pkg) val componentName = ComponentName(pkg, pkg)
val icon = Icon( val icon = Icon(
drawable = drawable, drawable = drawable,
@ -270,7 +267,6 @@ class UpdateIconPacksWorker(val context: Context) {
type = "greyscale_icon" type = "greyscale_icon"
) )
icons.add(icon) icons.add(icon)
Log.d("MM20", "Installed icon ${icon.toString()}")
} }
} }
} }