Remove "clampScreenWidthToGrid" log message

This commit is contained in:
Stefan Martinov 2017-10-31 13:07:10 +01:00 committed by GitHub
parent 9b536267ea
commit 24c1aa2077
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,7 +57,6 @@ func readFoomoMediaClientInfo(cookie string) (clientInfo *ClientInfo, err error)
func clampScreenWidthToGrid(screenWidth int64, breakPoints []int64) int64 {
// the last breakpoint
log.Println("clampScreenWidthToGrid", screenWidth, breakPoints)
distance := breakPoints[len(breakPoints)-1]
clampedValue := distance
for _, breakPoint := range breakPoints {