diff --git a/services/antivirus/pkg/service/service.go b/services/antivirus/pkg/service/service.go index 15ce0c48e..cc29e6c51 100644 --- a/services/antivirus/pkg/service/service.go +++ b/services/antivirus/pkg/service/service.go @@ -102,7 +102,7 @@ func (av Antivirus) Run() error { continue } - av.l.Info().Str("uploadid", ev.UploadID).Str("filename", ev.Filename).Msg("Starting virus scan.") + av.l.Debug().Str("uploadid", ev.UploadID).Str("filename", ev.Filename).Msg("Starting virus scan.") var errmsg string res, err := av.process(ev) if err != nil { @@ -145,7 +145,7 @@ func (av Antivirus) Run() error { // process the scan func (av Antivirus) process(ev events.StartPostprocessingStep) (scanners.ScanResult, error) { if ev.Filesize == 0 || (0 < av.m && av.m < ev.Filesize) { - av.l.Debug().Str("uploadid", ev.UploadID).Uint64("limit", av.m).Uint64("filesize", ev.Filesize).Msg("Skipping file because file size is higher than the limit.") + av.l.Info().Str("uploadid", ev.UploadID).Uint64("limit", av.m).Uint64("filesize", ev.Filesize).Msg("Skipping file to be virus scanned because its file size is higher than the defined limit.") return scanners.ScanResult{ Scantime: time.Now(), }, nil @@ -165,7 +165,7 @@ func (av Antivirus) process(ev events.StartPostprocessingStep) (scanners.ScanRes return scanners.ScanResult{}, err } defer rrc.Close() - av.l.Debug().Str("uploadid", ev.UploadID).Msg("Downloaded file successfully.") + av.l.Debug().Str("uploadid", ev.UploadID).Msg("Downloaded file successfully, starting virusscan") res, err := av.s.Scan(rrc) if err != nil {