Skip to content

Commit 36acb32

Browse files
committed
fix minor error in debug log
1 parent 723f4e3 commit 36acb32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.2
1+
0.3.3

internal/plugins/dynamodb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func InitDynamodb(configs []DynamoDbConfiguration, initializeCache bool) {
5151
func buildProjectionExpression(fieldExpr string) (*string, map[string]*string) {
5252
if len(fieldExpr) != 0 {
5353
fields := strings.Split(fieldExpr, ",")
54-
println(PrintPrefix, "Projection fields: ", fields)
54+
println(PrintPrefix, "Projection fields: %s", fields)
5555

5656
proj := expression.NamesList(expression.Name(fields[0]))
5757
for i := 1; i < len(fields); i++ {

0 commit comments

Comments
 (0)