mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06: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:
@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user