improved logging while deleting old cache files
This commit is contained in:
parent
2d59a99833
commit
ad768d1938
|
@ -78,8 +78,9 @@ public class BarcodeProvider extends ContentProvider implements ServiceConnectio
|
||||||
if (barcodeDirectory.exists() && barcodeDirectory.isDirectory()) {
|
if (barcodeDirectory.exists() && barcodeDirectory.isDirectory()) {
|
||||||
for (File file : barcodeDirectory.listFiles()) {
|
for (File file : barcodeDirectory.listFiles()) {
|
||||||
if (file.isFile() && !file.isHidden()) {
|
if (file.isFile() && !file.isHidden()) {
|
||||||
Log.d(Config.LOGTAG, "deleting old barcode file " + file.getAbsolutePath());
|
if (file.delete()) {
|
||||||
file.delete();
|
Log.d(Config.LOGTAG, "deleted old barcode file " + file.getAbsolutePath());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue