diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-07-26 15:03:25 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-07-26 15:03:25 +0200 |
| commit | 100cdd329a91ccab490266f01bd01611182e83bd (patch) | |
| tree | 810074d2942e0d17deab3632513762c5ffbf1a0b /src/librarian | |
| parent | 9c441df959ef8e7bc0f551cdc5646b0eef4130c0 (diff) | |
| download | box64-100cdd329a91ccab490266f01bd01611182e83bd.tar.gz box64-100cdd329a91ccab490266f01bd01611182e83bd.zip | |
Made librarian messages on lib dependancies issue on unload as LOG_DEBUG
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 72e9cd49..03bcae0a 100755 --- a/src/librarian/librarian.c +++ b/src/librarian/librarian.c @@ -46,7 +46,7 @@ static void freeLibraryRecurse(lib_t *maplib, x64emu_t *emu, int idx, char *free if (lib->depended.libs[i] == maplib->libraries[j]) break; } if (j == maplib->libsz) { - printf_log(LOG_INFO, "Library %s (%p) needs %p, but it was not found. Ignoring.\n", lib->name, lib, lib->depended.libs[i]); + printf_log(LOG_DEBUG, "Library %s (%p) needs %p, but it was not found. Ignoring.\n", lib->name, lib, lib->depended.libs[i]); continue; } if (freed[j] == 1) { |