Remove debugging prints

This commit is contained in:
Brian Buller 2017-07-09 20:20:09 -05:00
parent a10bfd175e
commit e27d244f9c
2 changed files with 0 additions and 3 deletions

View File

@ -261,7 +261,6 @@ func InitPageData(w http.ResponseWriter, req *http.Request) *pageData {
if p.FlashClass == "" {
p.FlashClass = "hidden"
}
fmt.Println("Flash Message: " + p.FlashMessage + " (" + p.FlashClass + ")")
// Build the menu
if p.LoggedIn {

View File

@ -1,7 +1,6 @@
package main
import (
"fmt"
"math/rand"
"net/http"
"strings"
@ -37,7 +36,6 @@ func loadVotingPage(w http.ResponseWriter, req *http.Request) {
rand.Seed(time.Now().Unix())
for len(tms) > 0 {
i := rand.Intn(len(tms))
fmt.Println("Chose Team: " + tms[i].Name)
vpd.Teams = append(vpd.Teams, tms[i])
tms = append(tms[:i], tms[i+1:]...)
}