seaweedfs/weed/notification/log/log_queue.go

30 lines
624 B
Go
Raw Normal View History

2018-08-13 08:20:49 +00:00
package kafka
import (
2018-08-13 08:22:32 +00:00
"github.com/chrislusf/seaweedfs/weed/glog"
2018-09-16 08:18:30 +00:00
"github.com/chrislusf/seaweedfs/weed/notification"
"github.com/chrislusf/seaweedfs/weed/util"
2018-08-19 22:18:37 +00:00
"github.com/golang/protobuf/proto"
2018-08-13 08:20:49 +00:00
)
func init() {
2018-09-16 08:18:30 +00:00
notification.MessageQueues = append(notification.MessageQueues, &LogQueue{})
2018-08-13 08:20:49 +00:00
}
type LogQueue struct {
}
func (k *LogQueue) GetName() string {
return "log"
}
func (k *LogQueue) Initialize(configuration util.Configuration, prefix string) (err error) {
2018-08-13 08:20:49 +00:00
return nil
}
func (k *LogQueue) SendMessage(key string, message proto.Message) (err error) {
glog.V(0).Infof("%v: %+v", key, message)
return nil
}