Re-enable verbose mode, add VERBOSE envvar support

This commit is contained in:
Stéphane Lesimple
2025-04-14 21:01:18 +02:00
parent 061026af8a
commit 0b5b9c9f9e
3 changed files with 2 additions and 9 deletions

View File

@@ -411,7 +411,7 @@ void Verbose(char *format, ...)
va_end(argp);
}
if(!Closure->verbose)
if(!Closure->verbose && !g_getenv("VERBOSE"))
return;
va_start(argp, format);