diff options
Diffstat (limited to 'src/text_anonymizer.cc')
-rw-r--r-- | src/text_anonymizer.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/text_anonymizer.cc b/src/text_anonymizer.cc index 39403bf..a9b1193 100644 --- a/src/text_anonymizer.cc +++ b/src/text_anonymizer.cc @@ -38,7 +38,7 @@ #include "data_scanner.hh" #include "diseases-json.h" #include "ghc/filesystem.hpp" -#include "lnav_util.hh" +#include "hasher.hh" #include "pcrepp/pcre2pp.hh" #include "words-json.h" #include "yajlpp/yajlpp_def.hh" @@ -508,6 +508,10 @@ text_anonymizer::next(string_fragment line) break; } default: { + log_debug("tok_re %d %d:%d", + tok_res->tr_token, + tok_res->tr_capture.c_begin, + tok_res->tr_capture.c_end); retval += tok_res->to_string(); break; } |