From 5c61238a2d9b9d3db20a05979ecee57741c50871 Mon Sep 17 00:00:00 2001 From: MichaelOultram Date: Sat, 26 Sep 2015 17:52:41 +0100 Subject: [PATCH] Removed debug message --- service_youtube.go | 1 - 1 file changed, 1 deletion(-) diff --git a/service_youtube.go b/service_youtube.go index cd61648..74da95f 100644 --- a/service_youtube.go +++ b/service_youtube.go @@ -105,7 +105,6 @@ func (yt YouTube) NewSong(user *gumble.User, id, offset string, playlist Playlis // parseTime converts from the string youtube returns to a time.Duration func (yt YouTube) parseTime(duration, regex string) time.Duration { - fmt.Printf("parseTime(%s)", strings.ToUpper(duration)) var days, hours, minutes, seconds, totalSeconds int64 if duration != "" { timestampExp := regexp.MustCompile(regex)