Exploring Postgres Logs For Raise Notice

I'm trying to test function logic using raise notice, but I'm having a hard time locating where these logs are printed in the supabase dashboard. I've tried this code in the query editor and then viewed database > logs >postgres , but nothing appears.

do $$
begin
   for counter in reverse 5..1 loop
      raise notice 'counter: %', counter;
   end loop;
end; $$
Was this page helpful?