]> git.openstreetmap.org Git - nominatim.git/commitdiff
ipanalyse: don't log long-time offenders
authorSarah Hoffmann <lonvia@denofr.de>
Thu, 31 Oct 2019 21:30:02 +0000 (22:30 +0100)
committerSarah Hoffmann <lonvia@denofr.de>
Thu, 31 Oct 2019 21:30:02 +0000 (22:30 +0100)
utils/cron_ipanalyse.py

index 66d122cd0c110432bb7820600821c6205868dd4c..97bad8da118e96b1f4287873919287389a3e2cd8 100755 (executable)
@@ -396,7 +396,7 @@ if __name__ == '__main__':
         fd.write(logstr % (' ua block:', ', '.join(uablocked)))
     if blocked:
         fd.write(logstr % ('new block:', ', '.join(blocked)))
-    for k,v in stats.items():
-        if v.ignores_warnings(k in bl.prevblocks) and k not in notlogged and ':' not in k:
-            fd.write(logstr % ('Warning ignored:', k))
+    #for k,v in stats.items():
+    #    if v.ignores_warnings(k in bl.prevblocks) and k not in notlogged and ':' not in k:
+    #        fd.write(logstr % ('Warning ignored:', k))
     fd.close()