From: Michael Andres Date: Wed, 6 Aug 2008 17:52:39 +0000 (+0000) Subject: improve log X-Git-Tag: BASE-SuSE-Code-11-Branch~530 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7344d378a32ba56b2407149a72df6a4531597b31;p=platform%2Fupstream%2Flibzypp.git improve log --- diff --git a/zypp/parser/RepoFileReader.cc b/zypp/parser/RepoFileReader.cc index d959f50..7a41431 100644 --- a/zypp/parser/RepoFileReader.cc +++ b/zypp/parser/RepoFileReader.cc @@ -42,8 +42,6 @@ namespace zypp its != dict.sectionsEnd(); ++its ) { - MIL << (*its) << endl; - RepoInfo info; info.setAlias(*its); @@ -77,10 +75,10 @@ namespace zypp else if ( it->first == "service" ) info.setService( it->second ); else - ERR << "Unknown attribute " << it->second << " ignored" << endl; + ERR << "Unknown attribute in [" << *its << "]: " << it->second << " ignored" << endl; } - MIL << "Linking repo info with file " << file << endl; info.setFilepath(file); + MIL << info << endl; // add it to the list. callback(info); //if (!progress.tick())