diff --git a/internal/universal/get.go b/internal/universal/get.go index a22b4fe..d8b5e53 100644 --- a/internal/universal/get.go +++ b/internal/universal/get.go @@ -84,7 +84,7 @@ func (gf *GetFile) HandleGetRequest(directory, torrentName, fileName string, res actualExt := filepath.Ext(unrestrict.Filename) expectedExt := filepath.Ext(fileName) if actualExt != expectedExt && unrestrict.Streamable != 1 { - log.Warnf("File was changed and is not streamable: %s and %s", fileName, unrestrict.Filename) + log.Warnf("File was changed and is not streamable: %s and %s (link=%s)", fileName, unrestrict.Filename, unrestrict.Link) http.Error(resp, "File is not available", http.StatusNotFound) return } else {