pg的日志配置选项很多,默认的情况下pg只是记录了启动停止的信息。在postgresql.conf配置文件中,你可以配置日志记录在哪里,日志记录什么,日志什么时候记录。如下面的是我自己测试的设置
# - When to Log -
client_min_messages = notice # values in order of decreasing detail:
# debug5
# debug4
# debug3
# debug2
# debug1
# log
# notice
# warning
# error
log_min_messages = warning # values in order of decreasing detail:
# debug5
# debug4
# debug3
# debug2
# debug1
# info
# notice
# warning
# error
# log
# fatal
# panic