The following line uses ${description}, which is bash (and other) syntax for interpolation, but Ruby uses #{description}.
|
@logger.info("${description}: using DynamoDB table \"#{table_name}\"") |
This results in the following log message:
${description}: using DynamoDB table \"<table-name>\"
Instead of the interpolating DynamoDB into the message