-
Notifications
You must be signed in to change notification settings - Fork 188
docs: add FAQ entry for checking startup logs in Comfy Desktop #1258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -82,9 +82,24 @@ You can browse and restore any snapshot from the app's **Snapshots** section. | |
| - Try taking a manual snapshot first via the app menu | ||
| - If the issue persists, restore to a previous snapshot and try again | ||
| </Accordion> | ||
| <Accordion title="How do I uninstall Comfy Desktop?"> | ||
| Comfy Desktop and its installations are separate on disk. To fully remove: | ||
|
|
||
| 1. **Delete the installations** from within the app (right-click → Remove) or delete the installation folders manually | ||
| 2. **Uninstall the app** using your system's standard method (Add/Remove Programs on Windows, drag to Trash on macOS, package manager on Linux) | ||
| </Accordion> | ||
| |<Accordion title="How do I check Comfy Desktop startup logs?"> | ||
| |When Comfy Desktop fails to start or behaves unexpectedly, you can check the startup logs: | ||
| | | ||
| |- **Windows:** Open File Explorer and navigate to `%APPDATA%\Comfy-Desktop\logs\`. Look for the most recent `.log` file. You can also run Comfy Desktop from the command line to see real-time output: | ||
| | ```powershell | ||
| | & "C:\Program Files\Comfy-Desktop\Comfy Desktop.exe" | ||
| | ``` | ||
| |- **macOS:** Open Terminal and run: | ||
| | ```bash | ||
| | /Applications/Comfy\ Desktop.app/Contents/MacOS/Comfy\ Desktop | ||
| | ``` | ||
| |- **Linux:** Open a terminal and run the app from the command line to see logs in real time | ||
| | | ||
| |For ComfyUI engine-level logs (not the Desktop app), check the console output when launching a ComfyUI instance from the Desktop app. You can see it in the instance's **Logs** tab. | ||
| |</Accordion> | ||
|
Comment on lines
+85
to
+99
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟠 Major | ⚡ Quick win Remove the leading The new Accordion content is pipe-prefixed, unlike the surrounding Markdown. This can make the block render as pipe-delimited text instead of a normal MDX Accordion. Use unprefixed Markdown/MDX lines. 🤖 Prompt for AI Agents |
||
| |<Accordion title="How do I uninstall Comfy Desktop?"> | ||
| |Comfy Desktop and its installations are separate on disk. To fully remove: | ||
| | | ||
| |1. **Delete the installations** from within the app (right-click → Remove) or delete the installation folders manually | ||
| |2. **Uninstall the app** using your system's standard method (Add/Remove Programs on Windows, drag to Trash on macOS, package manager on Linux) | ||
|
Comment on lines
+100
to
+104
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎯 Functional Correctness | 🟠 Major | ⚡ Quick win Do not claim this “fully” removes the application yet. The macOS guide documents that uninstall leaves app settings, logs, shared models, and outputs behind at 🤖 Prompt for AI Agents |
||
| |</Accordion> | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎯 Functional Correctness | 🟠 Major | ⚡ Quick win
Make the Linux instructions actionable.
This line tells users to run the app but provides neither an executable command nor a log path. Add the supported Linux launch command or link to the Linux log location.
🤖 Prompt for AI Agents