mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
Added doc string for log_writer
This commit is contained in:
parent
04d98d28d6
commit
3f7300663d
|
@ -163,6 +163,11 @@ def credentials_collector():
|
||||||
creds.close()
|
creds.close()
|
||||||
|
|
||||||
def log_writer(ctx): # Writing log
|
def log_writer(ctx): # Writing log
|
||||||
|
"""I have no idea what it does, someone does, so if you are reading this - explain wtf is this method...
|
||||||
|
|
||||||
|
Args:
|
||||||
|
ctx ([type]): [description]
|
||||||
|
"""
|
||||||
logFile = open("log.txt", "w")
|
logFile = open("log.txt", "w")
|
||||||
logFile.write(ctx.replace(default_palette[0], "").replace(default_palette[1], "").replace(default_palette[2], "").replace(default_palette[3], "").replace(default_palette[4], "") + "\n")
|
logFile.write(ctx.replace(default_palette[0], "").replace(default_palette[1], "").replace(default_palette[2], "").replace(default_palette[3], "").replace(default_palette[4], "") + "\n")
|
||||||
print(ctx)
|
print(ctx)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user