mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
am 91a81a27: More verbosity when reporting broken dictionaries
* commit '91a81a2790ae968ca4bca0451cf5a4ed8fc71d71': More verbosity when reporting broken dictionaries
This commit is contained in:
commit
7cd2352a40
@ -62,4 +62,9 @@ public final class AssetFileAddress {
|
||||
public void deleteUnderlyingFile() {
|
||||
FileUtils.deleteRecursively(new File(mFilename));
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return String.format("%s (offset=%d, length=%d)", mFilename, mOffset, mLength);
|
||||
}
|
||||
}
|
||||
|
@ -284,7 +284,8 @@ final public class BinaryDictionaryGetter {
|
||||
final AssetFileAddress afa = AssetFileAddress.makeFromFileName(f.getPath());
|
||||
if (null != afa) fileList.add(afa);
|
||||
} else {
|
||||
Log.e(TAG, "Found a cached dictionary file but cannot read or use it");
|
||||
Log.e(TAG, "Found a cached dictionary file for " + locale.toString()
|
||||
+ " but cannot read or use it");
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user