You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are a number of log events found here that, while not being errors, may merit more attention than a simple Info log. Therefore, adding a mid-level log level such as Warning would be helpful for looking through the logs. A proposed heuristic for the log level is as such:
A successful message (uploaded, scanned, added to album) should remain Info
"Server has same" is probably fine here as well
A problem that is handled (discarded, unsupported, missing metadata, duplicate in input, file not selected) should become a Warning, so they can be looked at more thoroughly by the end user and determined whether it's a problem or not
And of course, proper errors (failed to upload, failed to scan etc) should remain as Error
To be precise, here is what I recommend for the existing log types:
var_code=map[Code]string{
DiscoveredImage: "scanned image file", // infoDiscoveredVideo: "scanned video file", // infoDiscoveredSidecar: "scanned sidecar file", // infoDiscoveredDiscarded: "discarded file", // WARNINGDiscoveredUnsupported: "unsupported file", // WARNINGAnalysisAssociatedMetadata: "associated metadata file", // infoAnalysisMissingAssociatedMetadata: "missing associated metadata file", // WARNINGAnalysisLocalDuplicate: "file duplicated in the input", // WARNINGUploadNotSelected: "file not selected", // WARNINGUploadUpgraded: "server's asset upgraded with the input", // warning/info; up for debateUploadAddToAlbum: "added to an album", // infoUploadServerDuplicate: "server has same asset", // infoUploadServerBetter: "server has a better asset", // warning/info; up for debateUploadAlbumCreated: "album created/updated", // infoUploadServerError: "upload error", // errorUploaded: "uploaded", // infoStacked: "Stacked",
LivePhoto: "Live photo",
Metadata: "Metadata files",
Info: "Info",
Warning: "Warning"Error: "Error",
}
The text was updated successfully, but these errors were encountered:
I propose to add a "warning" log level.
https://github.com/simulot/immich-go/blob/35982819550c81ab615424cc10dd710d455e9952/helpers/fileevent/fileevents.go#L51C1-L76C2
There are a number of log events found here that, while not being errors, may merit more attention than a simple
Info
log. Therefore, adding a mid-level log level such asWarning
would be helpful for looking through the logs. A proposed heuristic for the log level is as such:Info
Warning
, so they can be looked at more thoroughly by the end user and determined whether it's a problem or notError
To be precise, here is what I recommend for the existing log types:
The text was updated successfully, but these errors were encountered: