Thank you for responding.
Here it is:
def get_audiences() do
IO.inspect("this will print")
Audience
|> preload([:ad_platform_account, :venues, :participants, :products])
|> Repo.all()
|> IO.inspect() # this will not print
end


















