Add env variable to turn on curl verbose

This commit is contained in:
Mark Roszko 2023-07-11 01:42:51 +00:00
parent 929a6a2b99
commit a38875d6dd
1 changed files with 8 additions and 2 deletions

View File

@ -135,6 +135,12 @@ KICAD_CURL_EASY::KICAD_CURL_EASY() :
curl_easy_setopt( m_CURL, CURLOPT_SSL_OPTIONS, CURLSSLOPT_NATIVE_CA ); curl_easy_setopt( m_CURL, CURLOPT_SSL_OPTIONS, CURLSSLOPT_NATIVE_CA );
#endif #endif
if( wxGetEnv( wxT( "KICAD_CURL_VERBOSE" ), nullptr ) )
{
// note: curl verbose will end up in stderr
curl_easy_setopt( m_CURL, CURLOPT_VERBOSE, 1L );
}
wxPlatformInfo platformInfo; wxPlatformInfo platformInfo;
wxString application( Pgm().App().GetAppName() ); wxString application( Pgm().App().GetAppName() );
wxString version( GetBuildVersion() ); wxString version( GetBuildVersion() );