Android: make System.load() error logs use Log.e() instead of Log.i()
Make the logs visible as errors as they should be. Task-number: QTBUG-115016 Change-Id: Idfaddbc3bdd3b218ae961b1a5cce9540a4710c39 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
This commit is contained in:
parent
e38eef345e
commit
bc8f0911a9
@ -421,10 +421,10 @@ public abstract class QtLoader {
|
|||||||
System.load(library);
|
System.load(library);
|
||||||
loadedLib = library;
|
loadedLib = library;
|
||||||
} else {
|
} else {
|
||||||
Log.i(QtTAG, "Can't find '" + library + "'");
|
Log.e(QtTAG, "Can't find '" + library + "'");
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Log.i(QtTAG, "Can't load '" + library + "'", e);
|
Log.e(QtTAG, "Can't load '" + library + "'", e);
|
||||||
}
|
}
|
||||||
|
|
||||||
return loadedLib;
|
return loadedLib;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user