Where are the PostgreSQL logs on macOS?

前端 未结 8 1768
慢半拍i
慢半拍i 2020-12-12 15:57

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?

8条回答
  •  北海茫月
    2020-12-12 16:31

    Just ask your database:

    SELECT 
        * 
    FROM 
        pg_settings 
    WHERE 
        category IN( 'Reporting and Logging / Where to Log' , 'File Locations')
    ORDER BY 
        category,
        name;
    

    In my case, it's in "/Library/PostgreSQL/8.4/data/pg_log"

提交回复
热议问题