Browse Source

Stop logging every file that is uploaded

pull/266/head
Gabe Kangas 5 years ago
parent
commit
3ff993c2bc
  1. 1
      core/storageproviders/s3Storage.go

1
core/storageproviders/s3Storage.go

@ -84,7 +84,6 @@ func (s *S3Storage) SegmentWritten(localFilePath string) { @@ -84,7 +84,6 @@ func (s *S3Storage) SegmentWritten(localFilePath string) {
if averagePerformance > float64(config.Config.GetVideoSegmentSecondsLength())*0.9 {
log.Warnln("Possible slow uploads: average upload S3 save duration", averagePerformance, "ms. troubleshoot this issue by visiting https://owncast.online/docs/troubleshooting/")
}
log.Traceln(localFilePath, "uploaded to S3")
}
// Upload the variant playlist for this segment

Loading…
Cancel
Save