--- libbluray-git-06d7ce995.old/src/file/dl_posix.c +++ libbluray-git-06d7ce995/src/file/dl_posix.c @@ -43,15 +43,18 @@ #endif #include +#include static void *_dl_dlopen(const char *path) { void *result; result = dlopen(path, RTLD_LAZY); + BD_DEBUG(DBG_BLURAY | DBG_CRIT, "dldl: path = %s\n", path); if (!result) { - BD_DEBUG(DBG_FILE, "can't open library '%s': %s\n", path, dlerror()); + BD_DEBUG(DBG_BLURAY | DBG_CRIT, "can't open library '%s': %s\n", path, dlerror()); + //fflush (stdout); } else { BD_DEBUG(DBG_FILE, "opened library '%s'\n", path); } --- libbluray-git-06d7ce995.old/src/libbluray/disc/aacs.c +++ libbluray-git-06d7ce995/src/libbluray/disc/aacs.c @@ -112,7 +112,7 @@ } *impl_id = ii; - BD_DEBUG(DBG_BLURAY, "Using %s for AACS\n", libaacs[ii]); + BD_DEBUG(DBG_BLURAY | DBG_CRIT, "Using %s for AACS\n", libaacs[ii]); return handle; } }