fix(tests): align discord + queue changes

This commit is contained in:
Peter Steinberger
2025-12-26 14:32:57 +01:00
parent a678c3f53e
commit e33c09f8d4
4 changed files with 244 additions and 69 deletions

View File

@@ -13,14 +13,13 @@ export function isVerbose() {
}
export function logVerbose(message: string) {
// if (globalVerbose) {
if (!globalVerbose) return;
console.log(chalk.gray(message));
try {
getLogger().debug({ message }, "verbose");
} catch {
// ignore logger failures to avoid breaking verbose printing
}
// }
}
export function setYes(v: boolean) {