From d8dfa06ee9694655df3f51823deff4e9a63971c6 Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Thu, 28 Oct 2021 14:53:36 +0200 Subject: tasks: less log output --- python/refcat/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index e2e0c64..4265050 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -1549,7 +1549,7 @@ class UnmatchedRefsReparse(Refcat): with self.output().open("w") as output: with self.input().open() as f: for i, line in enumerate(f): - if i % 10000 == 0: + if i % 100000 == 0: self.logger.debug("@{}".format(i)) doc = json.loads(line) if not "unstructured" in doc: -- cgit v1.2.3