diff --git a/src/storage/conversion/ChainedConverter.ts b/src/storage/conversion/ChainedConverter.ts index 0e29679bd..9ef5b5a38 100644 --- a/src/storage/conversion/ChainedConverter.ts +++ b/src/storage/conversion/ChainedConverter.ts @@ -143,7 +143,7 @@ export class ChainedConverter extends RepresentationConverter { } const { path } = match; - this.logger.debug(`Converting ${match.inType} -> ${path.intermediateTypes.join(' -> ')} -> ${match.outType}.`); + this.logger.debug(`Converting ${match.inType} -> ${[ ...path.intermediateTypes, match.outType ].join(' -> ')}.`); const args = { ...input }; for (let i = 0; i < path.converters.length - 1; ++i) {