We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea82ff9 commit 4c74cbbCopy full SHA for 4c74cbb
1 file changed
crates/tower-cmd/src/mcp.rs
@@ -219,7 +219,7 @@ impl TowerService {
219
match api::describe_run_logs(&self.config, &request.name, seq).await {
220
Ok(response) => {
221
let logs = response.log_lines.into_iter()
222
- .map(|log| format!("{}: {}", log.timestamp, log.message))
+ .map(|log| format!("{}: {}", log.reported_at, log.content))
223
.collect::<Vec<_>>()
224
.join("\n");
225
0 commit comments