Skip to content

Commit

Permalink
Add missing space in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrp committed Nov 25, 2024
1 parent 6d39ce8 commit a306cab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ trait WithExceptionExtractor extends NamedServiceProvider with LazyLogging {
case nonTransientExceptionExtractor(nonTransient) =>
NuExceptionInfo(exceptionInfo.nodeComponentInfo, nonTransient, exceptionInfo.context)
case other =>
val exceptionDetails = s"${ReflectUtils.simpleNameWithoutSuffix(other.getClass)}:${other.getMessage}"
val exceptionDetails = s"${ReflectUtils.simpleNameWithoutSuffix(other.getClass)}: ${other.getMessage}"
val nonTransient = NonTransientException(input = exceptionDetails, message = "Unknown exception", cause = other)
logger.debug(s"Unknown exception $exceptionDetails for ${exceptionInfo.context.id}", other)
logger.info(s"Unknown exception $exceptionDetails for ${exceptionInfo.context.id}")
Expand Down

0 comments on commit a306cab

Please sign in to comment.