mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-07 04:40:05 -06:00
25 lines
332 B
Go
25 lines
332 B
Go
package log
|
|
|
|
import (
|
|
mdlog "github.com/micro/go-micro/v2/debug/log"
|
|
)
|
|
|
|
type logStream struct {
|
|
stream <-chan mdlog.Record
|
|
stop chan bool
|
|
}
|
|
|
|
func (l *logStream) Chan() <-chan mdlog.Record {
|
|
return l.stream
|
|
}
|
|
|
|
func (l *logStream) Stop() error {
|
|
select {
|
|
case <-l.stop:
|
|
return nil
|
|
default:
|
|
close(l.stop)
|
|
}
|
|
return nil
|
|
}
|