Changed log level

This commit is contained in:
M66B 2020-02-12 09:17:09 +01:00
parent c0e16dd005
commit 6f490c15d2
1 changed files with 2 additions and 2 deletions

View File

@ -431,9 +431,9 @@ class ImageHelper {
if (semaphore.tryAcquire(FIT_DRAWABLE_TIMEOUT, TimeUnit.MILLISECONDS)) {
long elapsed = new Date().getTime() - start;
if (elapsed > FIT_DRAWABLE_WARNING)
Log.e("fitDrawable failed elapsed=" + elapsed);
Log.i("fitDrawable failed elapsed=" + elapsed);
} else
Log.e("fitDrawable failed timeout=" + FIT_DRAWABLE_TIMEOUT);
Log.i("fitDrawable failed timeout=" + FIT_DRAWABLE_TIMEOUT);
} catch (InterruptedException ex) {
Log.w(ex);
}