BookmarkSubscribeRSS Feed
NilNidhiEva
Calcite | Level 5

Hi All,

 

I have very large program and loops in my code, which creating very large log.

so, i am keep getting message that log is full.

 

i does not need log after my execution.

 

how, i can completely turn off log generation ?

3 REPLIES 3
PaigeMiller
Diamond | Level 26

PROC PRINTTO will turn off the log being sent to the LOG window.

 

You can use it to store the log as a text file outside of SAS so that it doesn't appear in the log window; or write the log to a DUMMY file, so the log no longer appears in the log window and isn't saved anywhere.


Examples are here:

https://documentation.sas.com/?cdcId=pgmsascdc&cdcVersion=9.4_3.4&docsetId=proc&docsetTarget=p08blwp...

 

Alternatively

 

options nosource nonotes;
/* Your SAS program goes here */
options source notes;

 

--
Paige Miller
Shmuel
Garnet | Level 18

You can eliminate many lines of being written to log by options:

 

options nosource nosource2 nomprint nosymbolgen nomlogic errors=1;

 

SASKiwi
PROC Star

How would you know if your SAS program had any errors then? If you run your program in batch mode there is no limitation on log size and your program would probably run faster as well.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 6834 views
  • 0 likes
  • 4 in conversation