mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-24 16:53:37 +00:00
Reduced logging
This commit is contained in:
parent
3eb5b7701d
commit
e3e0572681
1 changed files with 4 additions and 1 deletions
|
@ -138,7 +138,10 @@ class CharsetHelper {
|
|||
|
||||
Log.i("compact_enc_det sample=" + sample.length);
|
||||
String detected = jni_detect(sample);
|
||||
Log.e("compact_enc_det result=" + detected);
|
||||
if ("US-ASCII".equals(detected))
|
||||
Log.w("compact_enc_det result=" + detected);
|
||||
else
|
||||
Log.e("compact_enc_det result=" + detected);
|
||||
|
||||
return Charset.forName(detected);
|
||||
} catch (Throwable ex) {
|
||||
|
|
Loading…
Reference in a new issue