traefik/server/adapters.go

31 lines
749 B
Go
Raw Normal View History

package server
2015-09-19 11:02:59 +00:00
import (
"net/http"
"github.com/containous/traefik/log"
2015-09-19 11:02:59 +00:00
)
// OxyLogger implements oxy Logger interface with logrus.
type OxyLogger struct {
2015-09-19 11:02:59 +00:00
}
// Infof logs specified string as Debug level in logrus.
2015-09-19 11:02:59 +00:00
func (oxylogger *OxyLogger) Infof(format string, args ...interface{}) {
log.Debugf(format, args...)
2015-09-19 11:02:59 +00:00
}
// Warningf logs specified string as Warning level in logrus.
2015-09-19 11:02:59 +00:00
func (oxylogger *OxyLogger) Warningf(format string, args ...interface{}) {
log.Warningf(format, args...)
2015-09-19 11:02:59 +00:00
}
// Errorf logs specified string as Warningf level in logrus.
2015-09-19 11:02:59 +00:00
func (oxylogger *OxyLogger) Errorf(format string, args ...interface{}) {
log.Warningf(format, args...)
2015-09-19 11:02:59 +00:00
}
func notFoundHandler(w http.ResponseWriter, r *http.Request) {
http.NotFound(w, r)
}