Less intense debug output

master
Marius Kintel 2015-01-13 16:51:02 -05:00
parent 4b60231d3b
commit 0b1925a417
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ void Cache<Key,T>::trim(int m)
Node *u = n;
n = n->p;
#ifdef DEBUG
PRINTB("Trimming cache: %1% (%2% bytes)", *u->keyPtr % u->c);
PRINTB("Trimming cache: %1% (%2% bytes)", u->keyPtr->substr(0, 40) % u->c);
#endif
unlink(*u);
}