Skip to content

Sending feedback and logs

Open in ChatGPT ↗
Ask ChatGPT about this page
Open in Claude ↗
Ask Claude about this page
Copied!

Send Warp feedback, bug reports, and feature requests, and gather logs, crash reports, CPU samples, and AI conversation IDs to attach to them.

  • For subscriber technical issues or questions (bugs, credits, etc.), email support@warp.dev.
  • For subscriber billing issues or questions (refunds, cancellation, etc.), email billing@warp.dev.
  • For enterprise, please direct all feedback and issues to your designated Slack channel.

The /feedback slash command is the fastest way to report a Warp bug, flag a regression, or file a feature request from inside the terminal. It files issues against warpdotdev/warp so the Warp team can triage reports quickly.

/feedback has two flows, and Warp picks the right one automatically based on whether AI is enabled for your account:

  • AI enabled — the Agent drafts and files the issue for you.
  • AI disabled — Warp opens the GitHub new-issue picker in your browser so you can write and submit the report yourself.

When AI is enabled, /feedback hands your report to the Agent, which polishes and files your issue in a single turn. The Agent:

  1. Classifies your report by type (bug, regression, UX issue, or feature request).
  2. Asks clarifying questions only when the report is too vague to draft responsibly. For example, when expected behavior, reproduction steps, or the affected platform aren’t clear.
  3. Checks for duplicates in warpdotdev/warp and, if a likely duplicate exists, links you to that issue instead of filing a new one.
  4. Files the issue in warpdotdev/warp, either directly or by opening a prefilled new-issue page in your browser.

You can attach screenshots to your /feedback request the same way you attach images to any other Agent prompt (drag-and-drop into the input, paste from the clipboard, or use the attach button). When one or more images are attached, the Agent:

  • Includes a short caption for each screenshot in the drafted issue body, so the report stays coherent even if an image never makes it to the final GitHub issue.
  • Opens the prefilled new-issue page in your browser with placeholder lines (for example, _Paste screenshot 1 here_) indicating exactly where to drop each image. Screenshots have to be added in the browser because GitHub doesn’t yet support attaching images to issues over its API.
  • Reminds you in its final reply that the issue is drafted but not filed. To complete filing, drop your screenshots into the placeholder lines and click Submit new issue.

When AI is disabled for your account, /feedback (and the Feedback button in Warp Essentials) skips the Agent and opens the GitHub new-issue picker for warpdotdev/warp directly in your browser, with your current Warp version and operating system prefilled as query parameters. No Agent is invoked and no credits are consumed. You write and submit the issue yourself through GitHub’s web UI.

If you’re unsure whether AI is enabled for your account, open the Warp app and go to Settings > Agents > Warp Agent.

Whether you use the /feedback slash command or file an issue manually, a good feedback report answers these questions up front:

  • What happened? Describe the observed behavior in one or two sentences.
  • What did you expect? Describe the behavior you expected instead.
  • How do we reproduce it? List numbered steps when possible. If you can’t reproduce the issue reliably, mention that too.
  • What version of Warp are you on? /feedback fills this in automatically; for manual reports, copy it from Settings > Account.
  • Logs, screenshots, or conversation IDs. See Gathering Warp Logs, Collecting crash reports on macOS, or Gathering AI conversation ID below.

See the Slash Commands reference for the full list of commands available in Warp.

Retrieve Warp’s logs by following the instructions for your platform below. Locate the log file and attach it to your GitHub issue or email.

The Warp log files are located at ~/Library/Logs/.

Warp logs on macOS

Run the following to zip the Warp logs to your Desktop:

Terminal window
zip -j ~/Desktop/warp-logs.zip ~/Library/Logs/warp.log*

Warp Preview logs on macOS

Run the following to zip the Warp Preview logs to your Desktop:

Terminal window
zip -j ~/Desktop/warp_preview-logs.zip ~/Library/Logs/warp_preview.log*

If Warp crashes, macOS may generate .ips crash report files in ~/Library/Logs/DiagnosticReports/. Run the following to collect all Warp crash reports into a zip on your Desktop:

Terminal window
files=$(find ~/Library/Logs/DiagnosticReports -name "*.ips" -exec grep -l "dev\.warp" {} + 2>/dev/null) && [ -n "$files" ] && echo "$files" | xargs zip -j ~/Desktop/warp-crash-logs.zip || echo "No Warp crash reports found."

Attach the resulting warp-crash-logs.zip to your bug report.

Occasionally, the Warp team may ask you to provide debugging information on Windows OS in particular with one of the following:

Terminal window
# If Warp is in your PATH, Run:
warp --dump-debug-info
# Otherwise you may need to use an absolute path and ...
# Warp on Windows is installed for a single user, Run:
& $env:LOCALAPPDATA\programs\Warp\warp.exe --dump-debug-info
# Warp on Windows is installed for all users, Run:
& $env:PROGRAMFILES\Warp\warp.exe --dump-debug-info

Certain conditions can cause Warp to use more CPU than expected or become unresponsive. Collecting a CPU sample while the issue is happening is the best way to report it. The sample provides the information the Warp team needs to identify and fix the root cause.

Collect a sample using the steps for your platform and attach it to a new GitHub issue.

  1. Reproduce the high CPU usage or unresponsiveness in Warp.
  2. While the issue is occurring, open Activity Monitor, select the Warp process, and click Sample Process.

Sampling the Warp process in Activity Monitor

  1. Save the resulting sample and attach it to your GitHub issue.

To gather the conversation ID, RIGHT-CLICK on the AI conversation block in question and select “Copy conversation ID”, then paste that into the bug report that you submit so that our team can investigate the issue.

Whenever there is an error in the Agent Conversation, there will also be an option to directly copy the conversation ID for the bug report.

Agent Mode error message with Send Feedback button and debug information containing request and conversation IDs