diff --git a/src/search.cpp b/src/search.cpp index 9cbdbf5..1c25fdb 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -168,6 +168,8 @@ void cleanup_text(string &text) pos = text.find('>', pos) + 1; } + DEBUGLOG << "Replacing '" << text.substr(pos, endpos - pos) + << "' with '" << replacement << "'."; text.replace(pos, endpos - pos, replacement); pos += replacement.length(); }