Higher thresholds

This commit is contained in:
Samuel Clay 2021-07-15 17:05:58 -04:00
parent bfce5b8dc9
commit eb47c17905

View file

@ -47,9 +47,9 @@ class DumpRequestMiddleware:
def color_db(self, seconds, default):
color = default
if seconds >= .1:
if seconds >= .25:
color = '~SB~FR'
elif seconds > .01:
elif seconds > .1:
color = '~FW'
return color