Where are the PostgreSQL logs on macOS? Ask Question

Where are the PostgreSQL logs on macOS? Ask Question

I would like to take a look at the PostgreSQL log files to see what my app writes to them but I can't find them.

Any ideas?

ベストアンサー1

On OSX Homebrew installation the log can be found at:

Latest Homebrew:

/opt/homebrew/var/log/postgres.log

or older:

/usr/local/var/log/postgres.log 

or for older version of postgres (< 9.6)

/usr/local/var/postgres/server.log

Bonus - check if PostgreSQL is running using Homebrew:

brew services info --all

おすすめ記事