Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Change the exception logging in NativeLibrary to be an erro…
…r 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.
  • Loading branch information
lioncash committed Sep 4, 2013
1 parent 5696da0 commit bdc04f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -148,7 +148,7 @@
}
catch (UnsatisfiedLinkError ex)
{
Log.w("NativeLibrary", ex.toString());
Log.e("NativeLibrary", ex.toString());
}
}
}
Expand Up @@ -81,7 +81,7 @@ else if (entry.isFile() && hasExtension)
}
catch (Exception ex)
{
Log.e("Exception-FolderBrowser", ex.toString());
Log.e("FolderBrowser", ex.toString());
}
}

Expand Down

0 comments on commit bdc04f9

Please sign in to comment.