mac: open latest log file

This commit is contained in:
Peter Steinberger
2025-12-09 23:45:50 +00:00
parent 14d3a624d8
commit b73a7e07d2

View File

@@ -522,15 +522,35 @@ extension GeneralSettings {
}
private func revealLogs() {
let path = URL(fileURLWithPath: "/tmp/clawdis/clawdis.log")
if FileManager.default.fileExists(atPath: path.path) {
NSWorkspace.shared.selectFile(path.path, inFileViewerRootedAtPath: path.deletingLastPathComponent().path)
let fm = FileManager.default
let legacy = URL(fileURLWithPath: "/tmp/clawdis/clawdis.log")
let rollingDir = URL(fileURLWithPath: "/tmp/clawdis")
// Prefer the newest rolling log (clawdis-YYYY-MM-DD.log), fall back to legacy path.
let dirContents = (try? fm.contentsOfDirectory(
at: rollingDir,
includingPropertiesForKeys: [.contentModificationDateKey],
options: [.skipsHiddenFiles])) ?? []
let rollingLog = dirContents
.filter { $0.lastPathComponent.hasPrefix("clawdis-") && $0.pathExtension == "log" }
.sorted { lhs, rhs in
let lDate = (try? lhs.resourceValues(forKeys: [.contentModificationDateKey]).contentModificationDate) ?? .distantPast
let rDate = (try? rhs.resourceValues(forKeys: [.contentModificationDateKey]).contentModificationDate) ?? .distantPast
return lDate > rDate
}
.first
let target = rollingLog ?? (fm.fileExists(atPath: legacy.path) ? legacy : nil)
if let target {
NSWorkspace.shared.selectFile(target.path, inFileViewerRootedAtPath: target.deletingLastPathComponent().path)
return
}
let alert = NSAlert()
alert.messageText = "Log file not found"
alert.informativeText = "Expected log at \(path.path). Run a health check or generate activity first."
alert.informativeText = "Looked for clawdis logs in /tmp/clawdis/. Run a health check or send a message to generate activity, then try again."
alert.alertStyle = .informational
alert.addButton(withTitle: "OK")
alert.runModal()