Remove log.Printf

This commit is contained in:
Peter Stuifzand 2018-09-29 22:43:57 +02:00
parent d9cfd97833
commit c77cc22955

View File

@ -3,7 +3,6 @@ package main
import (
"encoding/json"
"fmt"
"log"
"net/http"
"os"
"time"
@ -29,7 +28,6 @@ func NewSession(w http.ResponseWriter, r *http.Request) (*Session, error) {
if err != nil {
return nil, err
}
log.Printf("%+v", session)
return session, nil
}