context inspector: Log when no suggestions (#16208)

Thorsten Ball created

Release Notes:

- N/A

Change summary

crates/assistant/src/context_inspector.rs | 4 ++++
1 file changed, 4 insertions(+)

Detailed changes

crates/assistant/src/context_inspector.rs 🔗

@@ -56,6 +56,10 @@ impl ContextInspector {
             crate::WorkflowStepStatus::Resolved(ResolvedWorkflowStep { title, suggestions }) => {
                 writeln!(output, "Resolution:").ok()?;
                 writeln!(output, "  {title:?}").ok()?;
+                if suggestions.is_empty() {
+                    writeln!(output, "  No suggestions").ok()?;
+                }
+
                 for (buffer, suggestion_groups) in suggestions {
                     let buffer = buffer.read(cx);
                     let buffer_path = buffer