LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (July 2008, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments: To: sas-l@uga.edu
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


Back to: Top of message | Previous page | Main SAS-L page