about summary refs log tree commit diff stats
path: root/src/librarian
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2022-07-09 16:52:20 +0200
committerptitSeb <sebastien.chev@gmail.com>2022-07-09 16:52:20 +0200
commitd23185173490b72336f96cc4ffc20bdb49b4da4d (patch)
tree1f3829ccc17495217819edf5f1fff17c263267f4 /src/librarian
parentc4a68bcd43252ac1b45bee6de476d8995beefcb1 (diff)
downloadbox64-d23185173490b72336f96cc4ffc20bdb49b4da4d.tar.gz
box64-d23185173490b72336f96cc4ffc20bdb49b4da4d.zip
Changed various log level for libdl file open error
Diffstat (limited to 'src/librarian')
-rwxr-xr-xsrc/librarian/librarian.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librarian/librarian.c b/src/librarian/librarian.c
index d21c7b8c..9921c06a 100755
--- a/src/librarian/librarian.c
+++ b/src/librarian/librarian.c
@@ -351,7 +351,7 @@ int AddNeededLib(lib_t* maplib, needed_libs_t* neededlibs, library_t* deplib, in
     // Add libs and symbol
     for(int i=0; i<npath; ++i) {
         if(AddNeededLib_add(maplib, neededlibs, deplib, local, paths[i], box64, emu)) {
-            printf_log(LOG_INFO, "Error loading needed lib %s\n", paths[i]);
+            printf_log(strchr(paths[i],'/')?LOG_DEBUG:LOG_INFO, "Error loading needed lib %s\n", paths[i]);
             return 1;
         }
     }