diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-07-09 16:52:20 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-07-09 16:52:20 +0200 |
| commit | d23185173490b72336f96cc4ffc20bdb49b4da4d (patch) | |
| tree | 1f3829ccc17495217819edf5f1fff17c263267f4 /src/librarian | |
| parent | c4a68bcd43252ac1b45bee6de476d8995beefcb1 (diff) | |
| download | box64-d23185173490b72336f96cc4ffc20bdb49b4da4d.tar.gz box64-d23185173490b72336f96cc4ffc20bdb49b4da4d.zip | |
Changed various log level for libdl file open error
Diffstat (limited to 'src/librarian')
| -rwxr-xr-x | src/librarian/librarian.c | 2 |
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; } } |