summaryrefslogtreecommitdiffstats
path: root/src/text_anonymizer.cc
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-07 04:48:35 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-07 04:48:35 +0000
commit207df6fc406e81bfeebdff7f404bd242ff3f099f (patch)
treea1a796b056909dd0a04ffec163db9363a8757808 /src/text_anonymizer.cc
parentReleasing progress-linux version 0.11.2-1~progress7.99u1. (diff)
downloadlnav-207df6fc406e81bfeebdff7f404bd242ff3f099f.tar.xz
lnav-207df6fc406e81bfeebdff7f404bd242ff3f099f.zip
Merging upstream version 0.12.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--src/text_anonymizer.cc6
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;
}