docs: update LF Desktop logging path#10089
Conversation
|
Important Review skippedAuto incremental reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the WalkthroughUpdates logging documentation to replace references from com.Langflow to com.LangflowDesktop across macOS and Windows paths, including desktop cache paths and command examples. No code or control-flow changes. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
Suggested labels
Suggested reviewers
Pre-merge checks and finishing touches✅ Passed checks (7 passed)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
|
||
| ```cmd | ||
| cd %LOCALAPPDATA%\com.langflow\logs | ||
| cd %APPDATA%\com.LangflowDesktop\cache |
There was a problem hiding this comment.
%LOCALAPPDATA% this part doesn't change, just the com.LangflowDesktop
There was a problem hiding this comment.
Oh right, because it's roaming. Thanks @Cristhianzl that change is reverted
This comment has been minimized.
This comment has been minimized.
There was a problem hiding this comment.
Actionable comments posted: 1
📜 Review details
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
docs/docs/Develop/logging.mdx(3 hunks)
🧰 Additional context used
📓 Path-based instructions (2)
docs/**/*.{md,mdx}
📄 CodeRabbit inference engine (.cursor/rules/docs_development.mdc)
docs/**/*.{md,mdx}: All Markdown/MDX pages must start with front matter including at least title and description; include sidebar_position for docs pages when applicable
Code blocks must specify a language and may include a title (```lang title="…")
Use sentence case for headings and keep paragraphs short and scannable
Write in second person, present tense, with a professional but approachable tone
Use inline code with backticks for code terms; use bold for UI elements and italics for emphasis; keep lists in parallel structure
Ensure internal links are functional and navigation works (update cross-references as needed)
Verify all code examples in docs and blog actually run as shown
Use correct terminology capitalization: Langflow, Component, Flow, API, JSON
Reference images with absolute paths under /img/... and provide descriptive alt text
Files:
docs/docs/Develop/logging.mdx
docs/docs/**/*.{md,mdx}
📄 CodeRabbit inference engine (.cursor/rules/docs_development.mdc)
Use Docusaurus admonitions (:::+tip|warning|danger) instead of custom callouts in docs pages
Files:
docs/docs/Develop/logging.mdx
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
- GitHub Check: Test Docs Build / Test Docs Build
- GitHub Check: build-and-deploy
| ```cmd | ||
| cd %LOCALAPPDATA%\com.langflow\logs | ||
| cd %APPDATA%\com.LangflowDesktop\cache | ||
| ``` |
There was a problem hiding this comment.
Quote Windows path to handle spaces
When %APPDATA% expands to a profile path containing spaces (common on Windows), cd %APPDATA%\com.LangflowDesktop\cache fails with “Too many parameters.” Please wrap the expansion in quotes so the command succeeds for all users.
- cd %APPDATA%\com.LangflowDesktop\cache
+ cd "%APPDATA%\com.LangflowDesktop\cache"📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| ```cmd | |
| cd %LOCALAPPDATA%\com.langflow\logs | |
| cd %APPDATA%\com.LangflowDesktop\cache | |
| ``` |
🤖 Prompt for AI Agents
In docs/docs/Develop/logging.mdx around lines 162 to 164, the Windows cd example
uses cd %APPDATA%\com.LangflowDesktop\cache which breaks when %APPDATA% expands
to a path with spaces; update the example to wrap the expanded path in double
quotes so it works for all users (i.e., use cd "
%APPDATA%\com.LangflowDesktop\cache " — remove any spaces inside quotes as
appropriate) and optionally note that PowerShell users can use the same quoted
path.
|
|
Build successful! ✅ |



LF Desktop log storage paths:
Summary by CodeRabbit