diff --git a/util.go b/util.go index 386f4b7..11b2329 100644 --- a/util.go +++ b/util.go @@ -77,7 +77,11 @@ func logActors (actors iter.Seq[Actor]) { } types := make(map[string] int) for actor := range actors { - types[actor.Type()] += 1 + typ := actor.Type() + if named, ok := actor.(Named); ok { + typ = fmt.Sprintf("%s/%s", typ, named.Name()) + } + types[typ] += 1 } for typ, count := range types { if count > 1 {