Skip to content

Commit

Permalink
Change fmt.Printf to log.Infof when adding items to playlist (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidflowerday committed May 30, 2024
1 parent 16c58ec commit fa77055
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/application.go
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ func (a *Application) Load(filenameOrUrl string, startTime int, contentType stri
filename: url,
contentURL: url,
})
fmt.Printf("Adding url %v (%v)\n", url, title)
log.Infof("Adding url %v (%v)", url, title)
}
return a.QueueLoadItems(items, "")
}
Expand Down

0 comments on commit fa77055

Please sign in to comment.