Skip to content

Commit

Permalink
fix minor error in debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
nthienan committed May 13, 2023
1 parent 723f4e3 commit 36acb32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.2
0.3.3
2 changes: 1 addition & 1 deletion internal/plugins/dynamodb.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func InitDynamodb(configs []DynamoDbConfiguration, initializeCache bool) {
func buildProjectionExpression(fieldExpr string) (*string, map[string]*string) {
if len(fieldExpr) != 0 {
fields := strings.Split(fieldExpr, ",")
println(PrintPrefix, "Projection fields: ", fields)
println(PrintPrefix, "Projection fields: %s", fields)

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

0 comments on commit 36acb32

Please sign in to comment.