We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85b54e6 commit ae43518Copy full SHA for ae43518
nerve/runtime/logging.py
@@ -68,7 +68,8 @@ def log_event_to_terminal(event: Event) -> None:
68
data["flow"] = DictWrapper(data["flow"])
69
70
max_steps = data["flow"].max_steps
71
- timeout = f"{data["flow"].timeout}s timeout" if data["flow"].timeout else "no timeout"
+ timeout = data["flow"].timeout
72
+ timeout = f"{timeout}s timeout" if timeout else "no timeout"
73
conv_window_strategy = data["flow"].actors[0].conv_window_strategy
74
logger.info(f"🚀 {max_steps} max steps | {timeout} | {conv_window_strategy}")
75
0 commit comments