Fix disable messages

This commit is contained in:
hyugogirubato 2024-07-12 09:52:55 +02:00
parent 5cffc20a3e
commit 2294f8e784
1 changed files with 2 additions and 2 deletions

View File

@ -106,9 +106,9 @@ const disableLibrary = (name) => {
print(Level.ERROR, `${e.message} for ${func.name}`);
}
});
print(Level.INFO, `The ${library.name} (${library.address}) library has been disabled`);
print(Level.INFO, `The library ${library.name} (${library.address}) has been disabled`);
} else {
print(Level.DEBUG, `The ${name} library was not found`);
print(Level.DEBUG, `The library ${name} was not found`);
}
}