how to clear server log - Mailing list pgsql-general

From Amy Smith
Subject how to clear server log
Date
Msg-id 520645a61002231049m65ae8de4p100924f92fc7c17d@mail.gmail.com
Whole thread Raw
Responses Re: how to clear server log  (Ben Chobot <bench@silentmedia.com>)
Re: how to clear server log  (Reid Thompson <reid.thompson@ateb.com>)
Re: how to clear server log  (Amy Smith <vah123@gmail.com>)
List pgsql-general
All
 
do you clean up the server file by removing them
use
 
find $logfile -mtime +$NUMBER_DAYS_TO_KEEP  -type f -print -exec rm -f {} \;
 
in postgres ?
 
How to remove the archive log files in postgres ? is the same way as remove backup files and server log files ?
 
 
thanks
Amy

pgsql-general by date:

Previous
From: Shu Ho
Date:
Subject:
Next
From: Ben Chobot
Date:
Subject: Re: how to clear server log