Merge pull request #28750 from akka/wip-PersistentRepr-toString-patriknw

Don't include event in PersistentRepr.toString
This commit is contained in:
Renato Cavalcanti 2020-03-17 20:38:27 +01:00 committed by GitHub
commit ab5d2472d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -232,4 +232,8 @@ private[persistence] final case class PersistentImpl(
case _ => false
}
override def toString: String = {
s"PersistentRepr($persistenceId,$sequenceNr,$writerUuid,$timestamp)"
}
}