Mailinglist Archive: zypp-commit (275 mails)
| < Previous | Next > |
[zypp-commit] <libzypp> master : decrease logging
- From: Michael Andres <ma@xxxxxxx>
- Date: Tue, 13 Oct 2009 11:28:08 +0200
- Message-id: <E1Mxi08-0005LT-8U@xxxxxxxxxxxxxxxx>
ref: refs/heads/master
commit 860ae43c7b797da9276e317ef6a54732325bfcfd
Author: Michael Andres <ma@xxxxxxx>
Date: Tue Oct 13 11:28:08 2009 +0200
decrease logging
---
zypp/repo/DeltaCandidates.cc | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/zypp/repo/DeltaCandidates.cc b/zypp/repo/DeltaCandidates.cc
index b486b9e..d6bf339 100644
--- a/zypp/repo/DeltaCandidates.cc
+++ b/zypp/repo/DeltaCandidates.cc
@@ -81,13 +81,13 @@ namespace zypp
|| it.subFind( sat::SolvAttr(DELTA_PACKAGE_NAME) ).asString()
== _pimpl->pkgname )
{
DeltaRpm delta( it );
- DBG << "checking delta: " << delta << endl;
+ //DBG << "checking delta: " << delta << endl;
if ( ! package
|| ( package->name() == delta.name()
&& package->edition() == delta.edition()
&& package->arch() == delta.arch() ) )
{
- DBG << "got delta candidate" << endl;
+ DBG << "got delta candidate: " << delta << endl;
candidates.push_back( delta );
}
}
--
To unsubscribe, e-mail: zypp-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: zypp-commit+help@xxxxxxxxxxxx
commit 860ae43c7b797da9276e317ef6a54732325bfcfd
Author: Michael Andres <ma@xxxxxxx>
Date: Tue Oct 13 11:28:08 2009 +0200
decrease logging
---
zypp/repo/DeltaCandidates.cc | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/zypp/repo/DeltaCandidates.cc b/zypp/repo/DeltaCandidates.cc
index b486b9e..d6bf339 100644
--- a/zypp/repo/DeltaCandidates.cc
+++ b/zypp/repo/DeltaCandidates.cc
@@ -81,13 +81,13 @@ namespace zypp
|| it.subFind( sat::SolvAttr(DELTA_PACKAGE_NAME) ).asString()
== _pimpl->pkgname )
{
DeltaRpm delta( it );
- DBG << "checking delta: " << delta << endl;
+ //DBG << "checking delta: " << delta << endl;
if ( ! package
|| ( package->name() == delta.name()
&& package->edition() == delta.edition()
&& package->arch() == delta.arch() ) )
{
- DBG << "got delta candidate" << endl;
+ DBG << "got delta candidate: " << delta << endl;
candidates.push_back( delta );
}
}
--
To unsubscribe, e-mail: zypp-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: zypp-commit+help@xxxxxxxxxxxx
| < Previous | Next > |