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

Thomas Guillem git at videolan.org
Wed Jun 29 12:18:20 CEST 2016


vlc-android | branch: 2.0.x | Thomas Guillem <thomas at gllm.fr> | Tue Jun 28 17:35:27 2016 +0200| [44ffdb84e05e0ed2a4a2b0b590defa8d1c0238e5] | committer: Geoffrey Métais

LibVLC: don't scare users if anw load fails

(cherry picked from commit 8e870eb5ed2fdd94c964c780ac95a7582b38df1a)

> https://code.videolan.org/videolan/vlc-android/commit/44ffdb84e05e0ed2a4a2b0b590defa8d1c0238e5
---

 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