瀏覽代碼

Removed hardcoded debuging

  This will reduce output that gets sent to the screen or to the
nohup.out file.
david 3 年之前
父節點
當前提交
6f9d840e8e
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      failUser.py

+ 2 - 2
failUser.py

@@ -67,13 +67,13 @@ def is_bad(line):
         at = at.replace(" on ", "")
         struct = {"user": user.lower(), "time": at}
         state = 1
-        print(struct)
+        #print(struct)
     elif state == 1 and line.startswith("Using port"):
         _, ip = line.split("[")
         ip = ip.replace("]", "")
         struct["ip"] = ip
         state = 0
-        print(struct)
+        #print(struct)
         return struct
 
 def checkup():