[Android] Change the exception logging in NativeLibrary to be an error instead of a warning.
Technically not having the required library should be regarded as an error, since the app won't even load without it. Also changed the logging tag in FolderBrowser.
This commit is contained in:
parent
5696da0b3e
commit
bdc04f9119
|
@ -148,7 +148,7 @@ public final class NativeLibrary
|
||||||
}
|
}
|
||||||
catch (UnsatisfiedLinkError ex)
|
catch (UnsatisfiedLinkError ex)
|
||||||
{
|
{
|
||||||
Log.w("NativeLibrary", ex.toString());
|
Log.e("NativeLibrary", ex.toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -81,7 +81,7 @@ public final class FolderBrowser extends Fragment
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
Log.e("Exception-FolderBrowser", ex.toString());
|
Log.e("FolderBrowser", ex.toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue