We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6b1947 commit ab63d88Copy full SHA for ab63d88
crates/ruff_server/src/server/api/requests/execute_command.rs
@@ -37,11 +37,11 @@ impl super::SyncRequestHandler for ExecuteCommand {
37
let output = debug_information(session);
38
notifier
39
.notify::<types::notification::LogMessage>(types::LogMessageParams {
40
- message: output,
+ message: output.clone(),
41
typ: types::MessageType::INFO,
42
})
43
.with_failure_code(ErrorCode::InternalError)?;
44
- return Ok(None);
+ return Ok(Some(serde_json::Value::String(output)));
45
}
46
47
// check if we can apply a workspace edit
0 commit comments