Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,11 @@ private[pekko] final class BehaviorSetup[C, E, S](
case SnapshotCountRetentionCriteriaImpl(_, keepNSnapshots, _) if keepNSnapshots > 1 =>
// not using internalLogger because it's probably not good to use mdc from the constructor
internalLoggerFactory().warn(
"Retention has been defined with keepNSnapshots [{}] for persistenceId [{}]," +
"but the snapshot store [{}] will only keep one snapshot. You can silence this warning and benefit from " +
"Retention has been defined with keepNSnapshots [{}] for persistenceId [{}], " +
"but the snapshot store will only keep one snapshot. You can silence this warning and benefit from " +
"a performance optimization by defining the retention criteria without the keepNSnapshots parameter.",
keepNSnapshots,
persistenceId,
settings.snapshotPluginId)
persistenceId)
case _ =>
}
}
Expand Down