type Monitor interface {
// Start returns a channel of log messages which are sent// every time a log message occurs
Start() <-chan []byte// Stop de-registers the sink from the InterceptLogger// and closes the log channels
Stop()
}
Monitor provides a mechanism to stream logs using go-hclog
InterceptLogger and SinkAdapter. It allows streaming of logs
at a different log level than what is set on the logger.
NewMonitor creates a new Monitor. Start must be called in order to actually start
streaming logs. buf is the buffer size of the channel that sends log messages.