# # # patch "ChangeLog" # from [456bc664b93334a01a45ac8116d46259737f3d61] # to [31381f17cd8dce8c61e90e2455c69378994c5e20] # # patch "restrictions.cc" # from [b59982c1c4ab148fc44aafaa72f0c3c7548f98b9] # to [1a8ec6f983744b907449fb9b56508fda7aef4289] # ============================================================ --- ChangeLog 456bc664b93334a01a45ac8116d46259737f3d61 +++ ChangeLog 31381f17cd8dce8c61e90e2455c69378994c5e20 @@ -1,3 +1,7 @@ +2006-11-28 Matt Johnston + + * restrictions.cc: limit some verbose debugging that slows "log " + 2006-11-22 Patrick Mauritz * rev_height.cc: add memcmp to global namespace for sunpro. ============================================================ --- restrictions.cc b59982c1c4ab148fc44aafaa72f0c3c7548f98b9 +++ restrictions.cc 1a8ec6f983744b907449fb9b56508fda7aef4289 @@ -292,8 +292,12 @@ node_restriction::includes(roster_t cons } else { - L(FL("default exclude of nid %d path '%s'") - % nid % file_path(sp)); + if (global_sanity.debug) + { + // printing this slows down "log ". + L(FL("(debug) default exclude of nid %d path '%s'") + % nid % file_path(sp)); + } return false; } }