mirror of
https://github.com/danielmiessler/SecLists
synced 2026-01-14 20:22:30 +01:00
improved logging
This commit is contained in:
parent
597f5758a1
commit
2143fe4b59
1 changed files with 4 additions and 0 deletions
|
|
@ -20,6 +20,10 @@ Size of a complete clone of SecLists is currently at `%s`
|
|||
Cloning this repository should take %i-%i minutes at 5MB/s speeds.
|
||||
|
||||
%s"""
|
||||
ERROR_STRING="::error file=%s,line=%s,col=%s,endColumn=%s::%s"
|
||||
|
||||
def print_err(file,msg,line=1,col=1,endcol=1):
|
||||
print(ERROR_STRING%(file,line,col,endcol,msg))
|
||||
|
||||
size=requests.get(REPOSITORY_API%(REPOSITORY)).json()['size'] # Its in kb
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue