aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2021-10-28 14:53:36 +0200
committerMartin Czygan <martin.czygan@gmail.com>2021-10-28 14:53:36 +0200
commitd8dfa06ee9694655df3f51823deff4e9a63971c6 (patch)
treee9e17d6b7c64bf680d4739899234c1afb168e538
parent093966728896783fff1762fa2cac2dd390213b3a (diff)
downloadrefcat-d8dfa06ee9694655df3f51823deff4e9a63971c6.tar.gz
refcat-d8dfa06ee9694655df3f51823deff4e9a63971c6.zip
tasks: less log output
-rw-r--r--python/refcat/tasks.py2
1 files changed, 1 insertions, 1 deletions
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: