diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-10-28 14:53:36 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-10-28 14:53:36 +0200 |
commit | d8dfa06ee9694655df3f51823deff4e9a63971c6 (patch) | |
tree | e9e17d6b7c64bf680d4739899234c1afb168e538 | |
parent | 093966728896783fff1762fa2cac2dd390213b3a (diff) | |
download | refcat-d8dfa06ee9694655df3f51823deff4e9a63971c6.tar.gz refcat-d8dfa06ee9694655df3f51823deff4e9a63971c6.zip |
tasks: less log output
-rw-r--r-- | python/refcat/tasks.py | 2 |
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: |