diff options
author | Marius Kintel <marius@kintel.net> | 2012-03-28 01:53:09 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-03-28 01:53:09 (GMT) |
commit | 3019295737c5085af8e75d806702b7852ee5511d (patch) | |
tree | e73e5d4b96c363ac5c92dae85c2c02a4b6ec8870 /src/ModuleCache.cc | |
parent | 4394c7a030ce7a08c95bd1af2e8c38ffcf972439 (diff) |
Less debug output
Diffstat (limited to 'src/ModuleCache.cc')
-rw-r--r-- | src/ModuleCache.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ModuleCache.cc b/src/ModuleCache.cc index e974a03..70b1fb9 100644 --- a/src/ModuleCache.cc +++ b/src/ModuleCache.cc @@ -43,7 +43,8 @@ Module *ModuleCache::evaluate(const std::string &filename) if (this->entries.find(filename) != this->entries.end() && this->entries[filename].cache_id == cache_id) { #ifdef DEBUG - PRINTB("Using cached library: %s (%s)", filename % cache_id); +// Causes too much debug output +// PRINTB("Using cached library: %s (%s)", filename % cache_id); #endif lib_mod = &(*this->entries[filename].module); |