diff options
author | Christopher Baines <cbaines8@gmail.com> | 2011-07-03 20:45:07 +0100 |
---|---|---|
committer | Christopher Baines <cbaines8@gmail.com> | 2011-07-03 20:45:07 +0100 |
commit | ea974eaa32b3cdeae8c8f8fe53f255f0d439bd3e (patch) | |
tree | 7208bf07a80f93ecd5a1f04d083c852b20763981 /apt-pkg | |
parent | cfcdf7fe9f8c925847fe8d8a18bb0996dd9391a5 (diff) |
Added debug output to package manager.
Diffstat (limited to 'apt-pkg')
-rw-r--r-- | apt-pkg/packagemanager.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apt-pkg/packagemanager.cc b/apt-pkg/packagemanager.cc index 2219f876a..e367b0495 100644 --- a/apt-pkg/packagemanager.cc +++ b/apt-pkg/packagemanager.cc @@ -346,6 +346,9 @@ bool pkgPackageManager::SmartConfigure(PkgIterator Pkg) configured*/ bool pkgPackageManager::VerifyConfigure(PkgIterator Pkg, pkgOrderList &OList) { + if (Debug == true) + clog << "VerifyConfigure " << Pkg.Name() << endl; + // If this is true at the end, then the package should not be configured bool error=true; // This holds the the OR status of the previous dependancy |