[Android] LibVLC: don't scare users if anw load fails

Thomas Guillem git at videolan.org
Tue Jun 28 18:29:53 CEST 2016


vlc-android | branch: master | Thomas Guillem <thomas at gllm.fr> | Tue Jun 28 17:35:27 2016 +0200| [8e870eb5ed2fdd94c964c780ac95a7582b38df1a] | committer: Thomas Guillem

LibVLC: don't scare users if anw load fails

> https://code.videolan.org/videolan/vlc-android/commit/8e870eb5ed2fdd94c964c780ac95a7582b38df1a
---

 libvlc/src/org/videolan/libvlc/LibVLC.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libvlc/src/org/videolan/libvlc/LibVLC.java b/libvlc/src/org/videolan/libvlc/LibVLC.java
index 7a4ce18..7fc1a87 100644
--- a/libvlc/src/org/videolan/libvlc/LibVLC.java
+++ b/libvlc/src/org/videolan/libvlc/LibVLC.java
@@ -165,7 +165,7 @@ public class LibVLC extends VLCObject<LibVLC.Event> {
                 else
                     System.loadLibrary("anw.21");
             } catch (Throwable t) {
-                Log.w(TAG, "Unable to load the anw library: " + t);
+                Log.d(TAG, "anw library not loaded");
             }
 
             try {



More information about the Android mailing list