Skip to content

Commit

Permalink
hls source: fix formatting debug log messages (#2243)
Browse files Browse the repository at this point in the history
  • Loading branch information
aler9 authored Aug 24, 2023
1 parent de90baa commit 482266a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/core/hls_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit 482266a

Please sign in to comment.