diff options
author | Marius Kintel <marius@kintel.net> | 2012-03-31 21:22:41 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-03-31 21:22:41 (GMT) |
commit | 3b375d8c11533c3c37176bdd30db40592867a2e3 (patch) | |
tree | 95938f3863f90cbac7d58a19d69616afb3ff39c3 /src/ModuleCache.cc | |
parent | 8766b955ecbf58effe4acb41ae244e1a0ee04360 (diff) | |
parent | c869c6e6b28580ab59c614f92d5834bb224bca02 (diff) |
Merge branch 'master' into value
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); |