Document log file locations

This commit is contained in:
Skyler Lehmkuhl 2025-01-08 04:06:11 -05:00
parent a577541b54
commit f34a518602
1 changed files with 4 additions and 0 deletions

View File

@ -49,6 +49,10 @@ pub fn run() {
})
.targets([
Target::new(TargetKind::Stdout),
// LogDir locations:
// Linux: /home/user/.local/share/org.lightningbeam.app/logs
// macOS: /Users/user/Library/Logs/org.lightningbeam.app/logs
// Windows: C:\Users\user\AppData\Local\org.lightningbeam.app\logs
Target::new(TargetKind::LogDir { file_name: Some("logs".to_string()) }),
Target::new(TargetKind::Webview),
])