1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-29 06:14:34 +00:00

secur32: Allow overriding GnuTLS debug level.

This commit is contained in:
Daniel Lehman 2024-05-18 16:36:41 -07:00 committed by Alexandre Julliard
parent 93f11ad21e
commit 34a57da592

View File

@ -1576,7 +1576,9 @@ static NTSTATUS process_attach( void *args )
if (TRACE_ON(secur32))
{
pgnutls_global_set_log_level(4);
char *env = getenv("GNUTLS_DEBUG_LEVEL");
int level = env ? atoi(env) : 4;
pgnutls_global_set_log_level(level);
pgnutls_global_set_log_function(gnutls_log);
}