File tree Expand file tree Collapse file tree
sqlite-jdbc-jni/src/main/java/org/sqlite Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -180,6 +180,7 @@ private static boolean extractAndLoadLibraryFile(
180180 String libFolderForCurrentOS , String libraryFileName , String targetFolder )
181181 throws FileException {
182182 String nativeLibraryFilePath = libFolderForCurrentOS + "/" + libraryFileName ;
183+ System .out .println ("Extract: " + nativeLibraryFilePath + " to: " + targetFolder );
183184 // Include architecture name in temporary filename in order to avoid conflicts
184185 // when multiple JVMs with different architectures running at the same time
185186 String uuid = UUID .randomUUID ().toString ();
@@ -325,6 +326,7 @@ private static void loadSQLiteNativeLibrary() throws Exception {
325326
326327 // Load the os-dependent library from the jar file
327328 sqliteNativeLibraryPath = LibraryLoaderUtil .getNativeLibResourcePath ();
329+ System .out .println ("sqliteNativeLibraryPath: " + sqliteNativeLibraryPath );
328330 boolean hasNativeLib =
329331 LibraryLoaderUtil .hasNativeLib (sqliteNativeLibraryPath , sqliteNativeLibraryName );
330332
You can’t perform that action at this time.
0 commit comments