change library disabler verbose

This commit is contained in:
hyugogirubato 2024-11-12 18:28:45 +01:00
parent 0c38979c95
commit 61dd5849b7
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/** /**
* Date: 2024-11-01 * Date: 2024-11-12
* Description: DRM key extraction for research and educational purposes. * Description: DRM key extraction for research and educational purposes.
* Source: https://github.com/hyugogirubato/KeyDive * Source: https://github.com/hyugogirubato/KeyDive
*/ */
@ -116,7 +116,7 @@ const disableLibrary = (name) => {
}); });
print(Level.INFO, `Library ${library.name} (${library.path}) has been disabled`); print(Level.INFO, `Library ${library.name} (${library.path}) has been disabled`);
} else { } else {
print(Level.INFO, `Library ${name} was not found`); print(Level.DEBUG, `Library ${name} was not found`);
} }
} }