github.com/greenboxal/deis@v1.12.1/logger/drain/drain.go (about) 1 package drain 2 3 // LogDrain is an interface for pluggable components that ship logs to a remote destination. 4 type LogDrain interface { 5 Send(string) error 6 }