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

crypt32: Allow overriding GnuTLS debug level.

This commit is contained in:
Daniel Lehman 2024-05-20 20:23:29 -07:00 committed by Alexandre Julliard
parent 24a956e6cb
commit 99511bde63

View File

@ -130,7 +130,9 @@ static NTSTATUS process_attach( void *args )
if (TRACE_ON( crypt ))
{
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 );
}