I have many functions in my postgresql DB. Many of them have these lines
RAISE INFO 'Some step completed';
RAISE NOTICE 'Some step completed';
What should I do to not display them in the query results?
Thousands of this messages slows down query execution time. I tried SET client_min_messages TO warning
, but it disabled only NOTICE
message types and I still see INFO
.