Log if we will pass 'user:PASS' to aria2c.
authorMichael Andres <ma@suse.de>
Thu, 5 Nov 2009 14:09:54 +0000 (15:09 +0100)
committerMichael Andres <ma@suse.de>
Thu, 5 Nov 2009 14:09:54 +0000 (15:09 +0100)
zypp/media/MediaAria2c.cc

index 25e689e..66d4a3d 100644 (file)
@@ -156,6 +156,7 @@ void fillAriaCmdLine( const string &ariaver,
     }
     else
     {
+        MIL << "Passing " << url.getScheme() << " credentials '" << s.username() << ':' << (s.password().empty() ? "" : "PASSWORD")<< "'" << endl;
         if ( url.getScheme() == "ftp" )
             file_options.push_back(str::form("ftp-user=%s", s.username().c_str() ));
         else if ( url.getScheme() == "http" ||
@@ -177,6 +178,7 @@ void fillAriaCmdLine( const string &ariaver,
         args.push_back(str::form("--http-proxy=%s", s.proxy().c_str() ));
         if ( ! s.proxyUsername().empty() )
         {
+            MIL << "Passing " << /*url.getScheme()*/"http" << "-proxy credentials '" << s.proxyUsername() << ':' << (s.proxyPassword().empty() ? "" : "PASSWORD")<< "'" << endl;
             file_options.push_back(str::form("http-proxy-user=%s", s.proxyUsername().c_str() ));
             if ( ! s.proxyPassword().empty() )
                 file_options.push_back(str::form("http-proxy-passwd=%s", s.proxyPassword().c_str() ));