Files
steipete--codexbar/Sources/CodexBarCore/Logging/LogMetadata.swift
T
2026-07-13 12:22:33 +08:00

11 lines
359 B
Swift

import Foundation
public enum LogMetadata {
public static func secretSummary(_ value: String?) -> [String: String] {
let trimmed = value?.trimmingCharacters(in: .whitespacesAndNewlines) ?? ""
let state = trimmed.isEmpty ? "cleared" : "set"
let length = trimmed.count
return ["state": state, "length": "\(length)"]
}
}