Log the panic messages

This commit is contained in:
Las Zenow 2014-02-11 11:29:15 +01:00
parent bbbd35e928
commit 275c7f745f
2 changed files with 6 additions and 2 deletions

View file

@ -1,9 +1,12 @@
package main
import log "github.com/cihub/seelog"
import (
"crypto/md5"
"labix.org/v2/mgo"
"labix.org/v2/mgo/bson"
"os"
"time"
)
@ -47,7 +50,8 @@ func initDB() *DB {
d := new(DB)
d.session, err = mgo.Dial(DB_IP)
if err != nil {
panic(err)
log.Critical(err)
os.Exit(1)
}
return d
}

View file

@ -156,7 +156,7 @@ func main() {
InitUpload(db)
initRouter(db)
panic(http.ListenAndServe(":"+PORT, nil))
log.Error(http.ListenAndServe(":"+PORT, nil))
}
func initRouter(db *DB) {