Logger shows invalid log (only the log is wrong, the insertion is fine)

When I try to insert a user with lots of fields, if any of the fields contain the string $10$ or $11$ or any higher numbers it replaces it with the value of the the 10th or 11th value. It does not happen with $01$ to $09$ just for higher numbers.

So it shows in the log

INSERT INTO "users" ("field1","field2","field3","field4","field5","field6","field7","field8","field9","field10","field11","field12","field13","field14","field15","field16") VALUES (''field11Value'value','valuetruevalue','value','value','value',0,0,0,0,$10$,$11$,'value','value',false,false,0) RETURNING "id"

Instead of the expected

INSERT INTO "users" ("field1","field2","field3","field4","field5","field6","field7","field8","field9","field10","field11","field12","field13","field14","field15","field16") VALUES ('$11$value','value$10$value','value','value','value',0,0,0,0,true,'field11Value','value','value',false,false,0) RETURNING "id"

So instead of field 1 value be '$11$value' it changes it to ''field11Value'value' and field 11 value is just $11$, similarily 'value$10$value' is changed to 'valuetruevalue' while field 10 becomes $10$

Comment From: github-actions[bot]

The issue has been automatically marked as stale as it missing playground pull request link, which is important to help others understand your issue effectively and make sure the issue hasn't been fixed on latest master, checkout https://github.com/go-gorm/playground for details. it will be closed in 30 days if no further activity occurs. if you are asking question, please use the Question template, most likely your question already answered https://github.com/go-gorm/gorm/issues or described in the document https://gorm.io ✨ Search Before Asking