I am using exposed framework in ktor for CRUD. I have followed this docs Exposed. Now when I perform CRUD, the Exposed prints a log statement which consist of sql statement. I want to hide the parameters in the sql statement. The log statement printed is: 2023-06-27 15:46:59.000 [DefaultDispatcher-worker-1] DEBUG Exposed - INSERT INTO People (age, name
) VALUES (30, 'test'). I want the value 30 and 'test' to be replaced by '?' How can I do it?
I tried searching but couldn't find proper examples for it. I followed this How to disable SQL parameters logging in Exposed? but it also didn't work.