This commit is contained in:
rmanach 2025-01-08 12:14:29 +01:00
parent 920d08308a
commit 351fc09287
2 changed files with 3 additions and 1 deletions

View File

@ -55,7 +55,7 @@ func postUploadFile(w http.ResponseWriter, r *http.Request, a services.IAuthenti
}
filename := uf.File.Value.GetFilename()
log.Info().Str("filename", filename).Msg("file is uploading...")
log.Info().Str("filename", filename).Msg("file uploaded")
resource := uf.IntoResource()

View File

@ -157,6 +157,8 @@ func NewStore(dir string) *Store {
}
s.init(dir)
log.Info().Str("dir", s.dir).Msg("store initialized")
return s
}