[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:
Lioncash 2013-09-04 06:46:11 -04:00
parent 5696da0b3e
commit bdc04f9119
2 changed files with 2 additions and 2 deletions

View File

@ -148,7 +148,7 @@ public final class NativeLibrary
} }
catch (UnsatisfiedLinkError ex) catch (UnsatisfiedLinkError ex)
{ {
Log.w("NativeLibrary", ex.toString()); Log.e("NativeLibrary", ex.toString());
} }
} }
} }

View File

@ -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());
} }
} }