Earlier quoted context omitted.
a program running on a 480 megahertz microcontroller can quite reasonably crash a million times a second; even a single 80-character error log line would be 80 megabytes per second or 7 terabytes per day. and it would be reasonable to record more telemetry from a crash than a single line
Really megabytes or it's just a typo? If so. How 80 characters could possibly generate so much data?
freq = 480 megahertz // 480000000 Hz
size = 80 * 1 byte // 80 bytes
cycles_per_write = 400 // 100 to print, 300 to fail
writes_per_sec = freq / cycles_per_write // 120mHz
duration = 24 hr
(writes_per_sec * size * duration) to terabytes // 8.2 tb
Seems somewhat plausible to hit >7TB of writes assuming no compression of the data.