mirror of
https://github.com/rangermix/TwitchDropsMiner.git
synced 2026-06-04 11:29:38 +00:00
Fix debug log formatting
This commit is contained in:
10
twitch.py
10
twitch.py
@@ -428,7 +428,7 @@ class Twitch:
|
||||
context = await self.gql_request(GQL_OPERATIONS["CurrentDrop"])
|
||||
drop_data: JsonType = context["data"]["currentUser"]["dropCurrentSession"]
|
||||
with open("log.txt", 'a') as file:
|
||||
print(format(time(), ".6f"), attempt+1, drop_data["dropID"], file=file)
|
||||
print(format(time(), ".6f"), drop_data["dropID"], attempt+1, file=file)
|
||||
if drop_data["dropID"] != drop.id:
|
||||
self.restart_watching()
|
||||
break
|
||||
@@ -677,10 +677,14 @@ class Twitch:
|
||||
drop_data = context["data"]["currentUser"]["dropCurrentSession"]
|
||||
with open("log.txt", 'a') as file:
|
||||
if drop_data is None:
|
||||
print(time(), None, sep='\t', file=file, flush=True)
|
||||
print(format(time(), ".6f"), None, sep='\t', file=file, flush=True)
|
||||
else:
|
||||
print(
|
||||
time(), drop_data.get("currentMinutesWatched"), sep='\t', file=file, flush=True
|
||||
format(time(), ".6f"),
|
||||
drop_data.get("currentMinutesWatched"),
|
||||
sep='\t',
|
||||
file=file,
|
||||
flush=True,
|
||||
)
|
||||
|
||||
def get_drop(self, drop_id: str) -> Optional[TimedDrop]:
|
||||
|
||||
Reference in New Issue
Block a user