You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
valinterceptOpenChannelPlugins= pluginParams.collect { casep: InterceptOpenChannelPlugin=> p }
392
-
require(interceptOpenChannelPlugins.size <=1, s"At most one plugin is allowed to intercept channel open messages, but multiple such plugins were registered: ${interceptOpenChannelPlugins.map(_.getClass.getSimpleName).mkString(", ")}. Disable conflicting plugins and restart eclair.")
392
+
require(interceptOpenChannelPlugins.size <=1, s"At most one plugin is allowed to intercept channel open messages, but multiple such plugins were registered: ${interceptOpenChannelPlugins.map(_.getClass.getPrettySimpleName).mkString(", ")}. Disable conflicting plugins and restart eclair.")
// all funding older than this one are considered locked
1193
1193
case c if c.fundingTxId == fundingTxId || c.fundingTxIndex < fundingTxIndex =>
1194
-
log.info(s"setting remoteFundingStatus=${RemoteFundingStatus.Locked.getClass.getSimpleName} for fundingTxId=${c.fundingTxId} fundingTxIndex=${c.fundingTxIndex}")
1194
+
log.info(s"setting remoteFundingStatus=${RemoteFundingStatus.Locked.getClass.getPrettySimpleName} for fundingTxId=${c.fundingTxId} fundingTxIndex=${c.fundingTxIndex}")
log.warning("received forbidden message {} during splicing with status {}", msg.getClass.getPrettySimpleName, d.spliceStatus.getClass.getPrettySimpleName)
@@ -264,7 +264,7 @@ class TransportHandler[T: ClassTag](keyPair: KeyPair, rs: Option[ByteVector], co
264
264
caseEvent(msg, d) =>
265
265
d match {
266
266
casen: NormalData[_] => log.warning(s"unhandled message $msg in state normal unackedSent=${n.unackedSent.size} unackedReceived=${n.unackedReceived.size} sendBuffer.lowPriority=${n.sendBuffer.lowPriority.size} sendBuffer.normalPriority=${n.sendBuffer.normalPriority.size}")
267
-
case _ => log.warning(s"unhandled message $msg in state ${d.getClass.getSimpleName}")
267
+
case _ => log.warning(s"unhandled message $msg in state ${d.getClass.getPrettySimpleName}")
268
268
}
269
269
stay()
270
270
}
@@ -278,7 +278,7 @@ class TransportHandler[T: ClassTag](keyPair: KeyPair, rs: Option[ByteVector], co
278
278
stateData match {
279
279
casenormal: NormalData[_] =>
280
280
// NB: we deduplicate on the class name: each class will appear once but there may be many instances (less verbose and gives debug hints)
0 commit comments