Skip to content

Commit 4c74cbb

Browse files
committed
fix: use appropriate fields after rebase on new API
1 parent ea82ff9 commit 4c74cbb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/tower-cmd/src/mcp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ impl TowerService {
219219
match api::describe_run_logs(&self.config, &request.name, seq).await {
220220
Ok(response) => {
221221
let logs = response.log_lines.into_iter()
222-
.map(|log| format!("{}: {}", log.timestamp, log.message))
222+
.map(|log| format!("{}: {}", log.reported_at, log.content))
223223
.collect::<Vec<_>>()
224224
.join("\n");
225225

0 commit comments

Comments
 (0)