add started log

This commit is contained in:
yuzuki999
2023-09-02 17:45:32 +08:00
parent 38081e14c2
commit 1ad7bf5d83
3 changed files with 14 additions and 1 deletions

View File

@@ -108,5 +108,13 @@ func (s *Selector) Protocols() []string {
}
func (s *Selector) Type() string {
return "selector"
t := "Selector("
for i := range s.cores {
if i != 0 {
t += " "
}
t += s.cores[i].Type()
}
t += ")"
return t
}