Skip to content

Commit

Permalink
Log basePath when compressing files
Browse files Browse the repository at this point in the history
  • Loading branch information
retrixe committed Oct 29, 2023
1 parent 74556cb commit b5006a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion endpoints_files.go
Expand Up @@ -518,7 +518,7 @@ func (connector *Connector) registerFileRoutes() {
}
connector.Info("server.files.compress", "ip", GetIP(r), "user", user, "server", id,
"archive", clean(r.URL.Query().Get("path")), "archiveType", archiveType,
"compression", compression, "files", files)
"compression", compression, "basePath", basePath, "files", files)
if async {
compressionProgressMap.Store(token, "finished")
go func() { // We want our previous Close() defers to call *now*, so we do this in goroutine
Expand Down

0 comments on commit b5006a8

Please sign in to comment.