fixed first log
This commit is contained in:
parent
59603deb6a
commit
1243b4aea7
@ -134,8 +134,11 @@ def raw(data, fd = sys.stdout, sensitive = False):
|
|||||||
if get_settings() & OUTPUT_TO_CONSOLE:
|
if get_settings() & OUTPUT_TO_CONSOLE:
|
||||||
ts = fd.write('%s\n' % data)
|
ts = fd.write('%s\n' % data)
|
||||||
if get_settings() & OUTPUT_TO_FILE and not sensitive:
|
if get_settings() & OUTPUT_TO_FILE and not sensitive:
|
||||||
if os.path.getsize(_outputfile) >= MAX_LOG_SIZE:
|
try:
|
||||||
return
|
if os.path.getsize(_outputfile) >= MAX_LOG_SIZE:
|
||||||
|
return
|
||||||
|
except FileNotFoundError:
|
||||||
|
pass
|
||||||
try:
|
try:
|
||||||
with open(_outputfile, "a+") as f:
|
with open(_outputfile, "a+") as f:
|
||||||
f.write(colors.filter(data) + '\n')
|
f.write(colors.filter(data) + '\n')
|
||||||
|
Loading…
Reference in New Issue
Block a user