<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Turn Off the SAS Log - How we can do ? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Turn-Off-the-SAS-Log-How-we-can-do/m-p/591182#M169319</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have very large program and loops in my code, which creating very large log.&lt;/P&gt;&lt;P&gt;so, i am keep getting message that log is full.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i does not need log after my execution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how, i can completely turn off log generation ?&lt;/P&gt;</description>
    <pubDate>Tue, 24 Sep 2019 15:04:28 GMT</pubDate>
    <dc:creator>NilNidhiEva</dc:creator>
    <dc:date>2019-09-24T15:04:28Z</dc:date>
    <item>
      <title>Turn Off the SAS Log - How we can do ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Turn-Off-the-SAS-Log-How-we-can-do/m-p/591182#M169319</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have very large program and loops in my code, which creating very large log.&lt;/P&gt;&lt;P&gt;so, i am keep getting message that log is full.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i does not need log after my execution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how, i can completely turn off log generation ?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 15:04:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Turn-Off-the-SAS-Log-How-we-can-do/m-p/591182#M169319</guid>
      <dc:creator>NilNidhiEva</dc:creator>
      <dc:date>2019-09-24T15:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: Turn Off the SAS Log - How we can do ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Turn-Off-the-SAS-Log-How-we-can-do/m-p/591183#M169320</link>
      <description>&lt;P&gt;PROC PRINTTO will turn off the log being sent to the LOG window.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Examples are here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=proc&amp;amp;docsetTarget=p08blwp6gwk25mn1hypjjrncx3bn.htm&amp;amp;locale=en"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=proc&amp;amp;docsetTarget=p08blwp6gwk25mn1hypjjrncx3bn.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Alternatively&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options nosource nonotes;
/* Your SAS program goes here */
options source notes;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 15:19:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Turn-Off-the-SAS-Log-How-we-can-do/m-p/591183#M169320</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-09-24T15:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: Turn Off the SAS Log - How we can do ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Turn-Off-the-SAS-Log-How-we-can-do/m-p/591231#M169337</link>
      <description>&lt;P&gt;You can eliminate many lines of being written to log by options:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options nosource nosource2 nomprint nosymbolgen nomlogic errors=1;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 17:13:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Turn-Off-the-SAS-Log-How-we-can-do/m-p/591231#M169337</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2019-09-24T17:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: Turn Off the SAS Log - How we can do ?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Turn-Off-the-SAS-Log-How-we-can-do/m-p/591308#M169355</link>
      <description>&lt;P&gt;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.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 21:14:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Turn-Off-the-SAS-Log-How-we-can-do/m-p/591308#M169355</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2019-09-24T21:14:40Z</dc:date>
    </item>
  </channel>
</rss>

