Include name attribute in GraphStageLogic toString (#29877)
This commit is contained in:
parent
64c27e435b
commit
268b46c8a8
1 changed files with 3 additions and 0 deletions
|
|
@ -1583,6 +1583,9 @@ abstract class GraphStageLogic private[stream] (val inCount: Int, val outCount:
|
|||
override def toString = s"SubSourceOutlet($name)"
|
||||
}
|
||||
|
||||
override def toString: String =
|
||||
attributes.get[Attributes.Name].map(attr => s"${getClass.toString}-${attr.n}").getOrElse(getClass.toString)
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue