Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/content/docs/plugin/logging.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -237,11 +237,11 @@ tauri_plugin_log::Builder::new()
When using the LogDir target, all logs are stored in the recommended log directory.
The following table describes the location of the logs per platform:

| Platform | Value | Example |
| -------- | ------------------------------------------------- | ------------------------------------------------- |
| Linux | `{configDir}/{bundleIdentifier}` | `/home/alice/.config/com.tauri.dev` |
| macOS | `{homeDir}/Library/Logs/{bundleIdentifier}` | `/Users/Alice/Library/Logs/com.tauri.dev` |
| Windows | `{FOLDERID_LocalAppData}/{bundleIdentifier}/logs` | `C:\Users\Alice\AppData\Local\com.tauri.dev\logs` |
| Platform | Value | Example |
| -------- | ---------------------------------------------------------------------------------------- | ------------------------------------------------- |
| Linux | `$XDG_DATA_HOME/{bundleIdentifier}/logs` or `$HOME/.local/share/{bundleIdentifier}/logs` | `/home/alice/.local/share/com.tauri.dev/logs` |
| macOS | `{homeDir}/Library/Logs/{bundleIdentifier}` | `/Users/Alice/Library/Logs/com.tauri.dev` |
| Windows | `{FOLDERID_LocalAppData}/{bundleIdentifier}/logs` | `C:\Users\Alice\AppData\Local\com.tauri.dev\logs` |

- `Folder`:

Expand Down
Loading