Browse Source

hls source: fix formatting debug log messages (#2243)

pull/2247/head
Alessandro Ros 2 years ago committed by GitHub
parent
commit
482266ae95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      internal/core/hls_source.go

6
internal/core/hls_source.go

@ -57,13 +57,13 @@ func (s *hlsSource) run(ctx context.Context, cnf *conf.PathConf, reloadConf chan @@ -57,13 +57,13 @@ func (s *hlsSource) run(ctx context.Context, cnf *conf.PathConf, reloadConf chan
},
},
OnDownloadPrimaryPlaylist: func(u string) {
s.Log(logger.Debug, "downloading primary playlist %u", u)
s.Log(logger.Debug, "downloading primary playlist %v", u)
},
OnDownloadStreamPlaylist: func(u string) {
s.Log(logger.Debug, "downloading stream playlist %u", u)
s.Log(logger.Debug, "downloading stream playlist %v", u)
},
OnDownloadSegment: func(u string) {
s.Log(logger.Debug, "downloading segment %u", u)
s.Log(logger.Debug, "downloading segment %v", u)
},
OnDecodeError: func(err error) {
s.Log(logger.Warn, err.Error())

Loading…
Cancel
Save