Date: Tue, 8 Jul 2008 23:38:55 -0700
Reply-To: Patrick <patrick.matter@GMX.CH>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Patrick <patrick.matter@GMX.CH>
Organization: http://groups.google.com
Subject: Re: delete the log file when it is too long
Content-Type: text/plain; charset=ISO-8859-1
Hi Domenico
You could reduce the log messages using some options (like: nosource
nonotes nomprint nosymbolgen.... and so on). Use Proc Options; to see
what's set.
You could route the log to somewhere else, example:
filename hugo temp;
proc printto log=hugo new;
run;
To get the log back use:
proc printto log=log;
run;
Cheers
Patrick
|