mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 15:49:25 +01:00
[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)
|
||||
{
|
||||
Log.w("NativeLibrary", ex.toString());
|
||||
Log.e("NativeLibrary", ex.toString());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -81,7 +81,7 @@ public final class FolderBrowser extends Fragment
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Log.e("Exception-FolderBrowser", ex.toString());
|
||||
Log.e("FolderBrowser", ex.toString());
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user