We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3135388 + 17d5ff7 commit ce0363aCopy full SHA for ce0363a
.gitignore
@@ -26,6 +26,9 @@ dist/
26
# Terminator workflow recorder debug files
27
terminator-workflow-recorder/*.txt
28
29
+# Build artifacts
30
+terminator-extension.zip
31
+
32
# Development scripts (user-specific paths)
33
scripts/copy-mcp-binary.ps1
34
build-and-deploy.ps1
crates/terminator-mcp-agent/src/server_sequence.rs
@@ -2690,7 +2690,10 @@ impl DesktopWrapper {
2690
message: Some(format!("Workflow running... ({}s)", elapsed_secs)),
2691
})
2692
.await;
2693
- tracing::trace!("Sent heartbeat progress notification ({}s elapsed)", elapsed_secs);
+ tracing::trace!(
2694
+ "Sent heartbeat progress notification ({}s elapsed)",
2695
+ elapsed_secs
2696
+ );
2697
}
2698
});
2699
0 commit comments