Demo mode
IndexError
Comment index out of range (content comments)
10h ago · 10h old
| Error message: | Invalid email format 'content' |
| When: | about 11 hours ago |
| Occurred at: | 2025-11-12 22:10:43 +0000 |
| Handled: | true |
| Severity: | error |
| Server name: | 9527a83e3418 |
| Environment: | production |
Items: 7
-
▶inner_logic inner_logictest.py, line test.py, line 37 37In App3233343536373839404142
message = scenario["message"].format(random.choice([random.randint(1, 1000), random.choice(["title", "content"]), "int", random.randint(0, 50), "search_term"]))
# Simulate stack for authentic trace
def inner_logic():
if random.random() > 0.5:
raise scenario["type"](message)
else:
raise scenario["type"](f"Variant: {message}")inner_logic()
No code available. -
▶simulate_error simulate_errortest.py, line test.py, line 41 41In App3637383940414243444546
if random.random() > 0.5:
raise scenario["type"](message)
else:
raise scenario["type"](f"Variant: {message}")inner_logic()
# Init SDK once
sentry_sdk.init(
dsn=DSN,
traces_sample_rate=1.0,
No code available. -
▶<module> <module>test.py, line test.py, line 71 71In App6667686970717273747576
# Add breadcrumb
sentry_sdk.add_breadcrumb(message=random.choice(["User loaded page", "Form submitted", "Query executed"]), level="info")
try:
simulate_error(scenario)
except Exception as e:
sentry_sdk.capture_exception(e)
print(f"Sent error: {e}")# Flush to ensure send
No code available.