File tree 1 file changed +4
-4
lines changed
pythonforandroid/bootstraps/sdl2/build/src/org/kivy/android
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 6
6
7
7
8
8
public class PythonUtil {
9
- private static final String TAG = "PythonUtil " ;
9
+ private static final String TAG = "pythonutil " ;
10
10
11
11
protected static String [] getLibraries () {
12
12
return new String [] {
@@ -27,7 +27,7 @@ public static void loadLibraries(File filesDir) {
27
27
boolean foundPython = false ;
28
28
29
29
for (String lib : getLibraries ()) {
30
- Log .v ("python" , "Loading library: " + lib );
30
+ Log .v (TAG , "Loading library: " + lib );
31
31
try {
32
32
System .loadLibrary (lib );
33
33
if (lib .startsWith ("python" )) {
@@ -37,13 +37,13 @@ public static void loadLibraries(File filesDir) {
37
37
// If this is the last possible libpython
38
38
// load, and it has failed, give a more
39
39
// general error
40
- Log .v ("python" , "Library loading error: " + e .getMessage ());
40
+ Log .v (TAG , "Library loading error: " + e .getMessage ());
41
41
if (lib .startsWith ("python3.6" ) && !foundPython ) {
42
42
throw new java .lang .RuntimeException ("Could not load any libpythonXXX.so" );
43
43
} else if (lib .startsWith ("python" )) {
44
44
continue ;
45
45
} else {
46
- Log .v ("python" , "An UnsatisfiedLinkError occurred loading " + lib );
46
+ Log .v (TAG , "An UnsatisfiedLinkError occurred loading " + lib );
47
47
throw e ;
48
48
}
49
49
}
You can’t perform that action at this time.
0 commit comments