1
mirror of git://git.acid.vegas/IRCP.git synced 2024-11-22 16:06:41 +00:00

Added note about possibly handling dict size checking another way

This commit is contained in:
Dionysus 2023-05-30 03:18:07 -04:00
parent 31cf9df5c4
commit e0bb3f36b6
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE

View File

@ -289,7 +289,7 @@ class probe:
args = line.split()
numeric = args[1]
#debug(line)
if sys.getsizeof(self.snapshot) >= settings.log_max:
if sys.getsizeof(self.snapshot) >= settings.log_max: # TODO: Should we be checking this on every line of data from the server? Need to avoid asyncronous collisions possibly if not
with open(f'logs/{self.server}.json{self.multi}', 'w') as fp:
json.dump(self.snapshot, fp)
self.snapshot = {'raw':list()}