clvLabs / fortnitetracker-stats

Stats and tools for fortnitetracker.com
2 stars 0 forks source link

Unify logging format - user names #4

Closed clvLabs closed 3 years ago

clvLabs commented 3 years ago

In order to make it easier/better to later find stuff in the logs, any action related to a user should show it in a consistent manner.

Instead of

2021/01/30 00:36:02.869 INFO     [APIStatsGetter] New api stats update --------------------------------
2021/01/30 00:36:02.869 INFO     [APIStatsGetter] Requesting matches for guillataX
2021/01/30 00:36:03.172 INFO     [APIStatsGetter] Added 1 new matches
2021/01/30 00:36:03.174 INFO     [APIStatsGetter] Requesting matches for tobalinaco
2021/01/30 00:36:03.412 INFO     [APIStatsGetter] Added 2 new matches
2021/01/30 00:36:03.415 INFO     [APIStatsGetter] Requesting matches for Nur93
2021/01/30 00:36:03.599 ERROR    [APIStatsGetter] Can't get matches for Nur93
2021/01/30 00:36:03.599 ERROR    [APIStatsGetter] Response: {'message': 'API rate limit exceeded'}
2021/01/30 00:36:03.599 ERROR    [APIStatsGetter] SKIPPING Nur93

we could do

2021/01/30 00:36:02.869 INFO     [APIStatsGetter] New api stats update --------------------------------
2021/01/30 00:36:02.869 INFO     [APIStatsGetter] [guillataX] Requesting matches
2021/01/30 00:36:03.172 INFO     [APIStatsGetter] [guillataX] Added 1 new matches
2021/01/30 00:36:03.174 INFO     [APIStatsGetter] [tobalinaco] Requesting matches
2021/01/30 00:36:03.412 INFO     [APIStatsGetter] [tobalinaco] Added 2 new matches
2021/01/30 00:36:03.415 INFO     [APIStatsGetter] [Nur93] Requesting matches
2021/01/30 00:36:03.599 ERROR    [APIStatsGetter] [Nur93] Can't get matches
2021/01/30 00:36:03.599 ERROR    [APIStatsGetter] [Nur93] Response: {'message': 'API rate limit exceeded'}
2021/01/30 00:36:03.599 ERROR    [APIStatsGetter] [Nur93] SKIPPING
clvLabs commented 3 years ago

ProfilePinger already shows user names as requested:

2021/01/30 15:23:44.726 INFO     [ProfilePinger] New profile update --------------------------------
2021/01/30 15:23:44.726 INFO     [ProfilePinger] [guillataX] Requesting tracker page
2021/01/30 15:23:46.859 INFO     [ProfilePinger] [guillataX] Requesting notification page
2021/01/30 15:23:49.096 INFO     [ProfilePinger] [tobalinaco] Requesting tracker page
2021/01/30 15:23:51.212 INFO     [ProfilePinger] [tobalinaco] Requesting notification page
2021/01/30 15:23:53.428 INFO     [ProfilePinger] [Nur93] Requesting tracker page
2021/01/30 15:23:55.549 INFO     [ProfilePinger] [Nur93] Requesting notification page
2021/01/30 15:23:57.821 INFO     [ProfilePinger] Profile update FINISHED --------------------------------