<?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 Re: Log Path in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406467#M279321</link>
    <description>&lt;P&gt;No... This should work With Your Version too.&amp;nbsp; This functionality is VERY old.&lt;/P&gt;&lt;P&gt;You will get a "balnk" value when running interactively&amp;nbsp; and the full pathname of the log file when running in batch mode (where there is a log file).&lt;/P&gt;&lt;P&gt;... I think you replied to another aswer than mine....&lt;/P&gt;&lt;P&gt;TRY IT!&lt;/P&gt;</description>
    <pubDate>Mon, 23 Oct 2017 11:55:22 GMT</pubDate>
    <dc:creator>PSNn</dc:creator>
    <dc:date>2017-10-23T11:55:22Z</dc:date>
    <item>
      <title>Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406362#M279307</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can I get the current path of the log file?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in other word:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc printto log='c:\em\log1.log';
run;

%let log_path = command to get log path&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Oct 2017 11:45:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406362#M279307</guid>
      <dc:creator>Ditza1</dc:creator>
      <dc:date>2017-10-22T11:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406367#M279308</link>
      <description>&lt;P&gt;You can change your code to get what you want:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let log_path =c:\em;
proc printto log="&amp;amp;log_path.\log1.log";
run;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Pay attention - use double quotes instead single quotes.&lt;/P&gt;</description>
      <pubDate>Sun, 22 Oct 2017 14:02:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406367#M279308</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2017-10-22T14:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406368#M279309</link>
      <description>Some other code set the path or leave it the default value. I am looking&lt;BR /&gt;for a way to get it without knowing what happened there&lt;BR /&gt;</description>
      <pubDate>Sun, 22 Oct 2017 14:16:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406368#M279309</guid>
      <dc:creator>Ditza1</dc:creator>
      <dc:date>2017-10-22T14:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406372#M279310</link>
      <description>&lt;P&gt;@You wrote:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/173077"&gt;@Ditza1&lt;/a&gt; wrote:&lt;BR /&gt;Some other code set the path or leave it the default value. I am looking&lt;BR /&gt;for a way to get it without knowing what happened there&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;As much as I know, there is no deault path for log.&lt;/P&gt;
&lt;P&gt;You use FILENAME staetment to link symbolic name - the fileref - to a path,&lt;/P&gt;
&lt;P&gt;or define the path directly in your step - as you have done with PROC PRINTTO in your post.&lt;/P&gt;
&lt;P&gt;The PROC PRINTO LOG= defines where to save next sas code lines, until it reaches the:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC PRINTTO; RUN; - that closes the saved log file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is a predefined path, it should be in a mcro variabe.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Online session log (window) is held in SAS utility catalog.&lt;/P&gt;
&lt;P&gt;I'm not sure you have approach to it.&lt;/P&gt;</description>
      <pubDate>Sun, 22 Oct 2017 14:44:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406372#M279310</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2017-10-22T14:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406374#M279311</link>
      <description>&lt;P&gt;Just to be more clear, assuming the program is:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&amp;lt;code part 1&amp;gt;
proc printto log=&amp;lt;path and name.log&amp;gt;; run;

&amp;lt;code part 2&amp;gt;

proc pritto; run;

&amp;lt;code part 3&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;the saved log will hold &lt;STRONG&gt;only&lt;/STRONG&gt; part 2.&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Oct 2017 14:52:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406374#M279311</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2017-10-22T14:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406422#M279312</link>
      <description>I am not sure l used the right terms.&lt;BR /&gt;&lt;BR /&gt;I wrote a macro that can be used in a lot of other macros. The macro&lt;BR /&gt;redirect the log to file and needs to redirect it back to where it was at&lt;BR /&gt;the end of the macro. So l am looking for a way to get the log path before&lt;BR /&gt;I change it, so i can redirect back at the end of the macro&lt;BR /&gt;</description>
      <pubDate>Mon, 23 Oct 2017 06:24:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406422#M279312</guid>
      <dc:creator>Ditza1</dc:creator>
      <dc:date>2017-10-23T06:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406427#M279313</link>
      <description>&lt;P&gt;Check the macro-variable SYSPRINTTOLOG and the option LOG, depending on how the sas-session was started one of them is non-missing if the log is already written to a file.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 07:33:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406427#M279313</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2017-10-23T07:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406429#M279314</link>
      <description>This seems really what I was looking for, but I am getting&lt;BR /&gt;WARNING: Apparent symbolic reference SYSPRINTTOLOG not resolved.&lt;BR /&gt;</description>
      <pubDate>Mon, 23 Oct 2017 08:00:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406429#M279314</guid>
      <dc:creator>Ditza1</dc:creator>
      <dc:date>2017-10-23T08:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406431#M279315</link>
      <description>&lt;P&gt;Use %symexist() first to check if a variable exists; if it exists, inspect its contents.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 08:32:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406431#M279315</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-23T08:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406436#M279316</link>
      <description>&lt;P&gt;But If It doesn't exist&amp;nbsp;It brings me back to the problem of how to get log path&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYSPRINTTOLOG &lt;SPAN&gt;doesn't&amp;nbsp; exist in &lt;SPAN class="word"&gt;neither&lt;/SPAN&gt;&amp;nbsp;of the stages of the following&amp;nbsp;code&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put %symexist(SYSPRINTTOLOG);
filename logfile "Y:\log1.txt";
proc printto log= logfile new ; run;
%put %symexist(SYSPRINTTOLOG);
proc printto;run;
%put %symexist(SYSPRINTTOLOG);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 23 Oct 2017 09:09:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406436#M279316</guid>
      <dc:creator>Ditza1</dc:creator>
      <dc:date>2017-10-23T09:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406454#M279317</link>
      <description>&lt;P&gt;You are right. I tested it in 9.4, both with a workspace server and display manager SAS, and in both cases SYSPRINTTOLOG is never set, although the log is successfully redirected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This runs contrary to what is written in &lt;A href="https://support.sas.com/resources/papers/proceedings15/SAS1575-2015.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings15/SAS1575-2015.pdf&lt;/A&gt;, and in the relevant parts of the SAS documentation:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p1hwvc03z4tqlkn1owzhzo8e7ulu.htm&amp;amp;docsetVersion=3.1&amp;amp;locale=en" target="_blank"&gt;http://documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p1hwvc03z4tqlkn1owzhzo8e7ulu.htm&amp;amp;docsetVersion=3.1&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p182p6h2jd0qr2n1hjoj0kp2q03a.htm&amp;amp;docsetVersion=3.2&amp;amp;locale=en" target="_blank"&gt;http://documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p182p6h2jd0qr2n1hjoj0kp2q03a.htm&amp;amp;docsetVersion=3.2&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 10:41:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406454#M279317</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-23T10:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406461#M279318</link>
      <description>&lt;P&gt;Strange. New session started with eg 7.12 on sas 9.4m3. Same result with display manager on the workspace server.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;NOTE: PROZEDUR PRINTTO used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

25         
26         %put &amp;amp;=SYSVLONG;
SYSVLONG=9.04.01M3P062415
27         %put &amp;amp;=SYSPRINTTOLOG;
SYSPRINTTOLOG="############\extlog.log"
28         
29         proc printto;run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 23 Oct 2017 11:28:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406461#M279318</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2017-10-23T11:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406463#M279319</link>
      <description>&lt;P&gt;This is what you need:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;%LET LOG = %SYSFUNC(getoption(LOG));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 11:38:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406463#M279319</guid>
      <dc:creator>PSNn</dc:creator>
      <dc:date>2017-10-23T11:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406465#M279320</link>
      <description>&lt;P&gt;my version is older then yours&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYSVLONG4=9.04.01M1P12042013&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I guess it works only in the newer versions&lt;/P&gt;&lt;P&gt;( And we have in my company&amp;nbsp;older versions of sas)&lt;/P&gt;&lt;P&gt;Any other Ideas of getting&amp;nbsp;log path&amp;nbsp;without using&amp;nbsp;&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;SYSPRINTTOLOG&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 11:48:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406465#M279320</guid>
      <dc:creator>Ditza1</dc:creator>
      <dc:date>2017-10-23T11:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406467#M279321</link>
      <description>&lt;P&gt;No... This should work With Your Version too.&amp;nbsp; This functionality is VERY old.&lt;/P&gt;&lt;P&gt;You will get a "balnk" value when running interactively&amp;nbsp; and the full pathname of the log file when running in batch mode (where there is a log file).&lt;/P&gt;&lt;P&gt;... I think you replied to another aswer than mine....&lt;/P&gt;&lt;P&gt;TRY IT!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 11:55:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406467#M279321</guid>
      <dc:creator>PSNn</dc:creator>
      <dc:date>2017-10-23T11:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406468#M279322</link>
      <description>&lt;P&gt;I tried this but I get zero in all LOG macro variables:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename logfile "C:\log1.txt";
proc printto log= logfile new ; run;
%LET LOG1 = %SYSFUNC(getoption(LOG));
proc printto;run;
%LET LOG2 = %SYSFUNC(getoption(LOG));
%put &amp;amp;LOG0;
%put &amp;amp;LOG1;
%put &amp;amp;LOG2;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 23 Oct 2017 11:55:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406468#M279322</guid>
      <dc:creator>Ditza1</dc:creator>
      <dc:date>2017-10-23T11:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406470#M279323</link>
      <description>&lt;P&gt;If these macro variables only exist in batch mode, then that fact should be part of the documentation.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 11:57:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406470#M279323</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-23T11:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406472#M279324</link>
      <description>&lt;P&gt;Ran this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put %symexist(SYSPRINTTOLOG);
proc printto log='$HOME/log1.txt' new;run;
%put %symexist(SYSPRINTTOLOG);
%put &amp;amp;SYSPRINTTOLOG;
proc printto log='$HOME/log2.txt' new;run;
%put %symexist(SYSPRINTTOLOG);
%put &amp;amp;SYSPRINTTOLOG;
proc printto;run;
%put %symexist(SYSPRINTTOLOG);
%put &amp;amp;SYSPRINTTOLOG;
%put &amp;amp;=sysvlong;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And got this log in EG:&lt;/P&gt;
&lt;PRE&gt;24         %put %symexist(SYSPRINTTOLOG);
0
25         proc printto log='$HOME/log1.txt' new;run;

NOTE: PROZEDUR PRINTTO used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

32         %put %symexist(SYSPRINTTOLOG);
0
33         %put &amp;amp;SYSPRINTTOLOG;
WARNING: Apparent symbolic reference SYSPRINTTOLOG not resolved.
&amp;amp;SYSPRINTTOLOG
34         %put &amp;amp;=sysvlong;
SYSVLONG=9.04.01M2P072314
&lt;/PRE&gt;
&lt;P&gt;log1.txt:&lt;/P&gt;
&lt;PRE&gt;NOTE: PROZEDUR PRINTTO used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

26         %put %symexist(SYSPRINTTOLOG);
0
27         %put &amp;amp;SYSPRINTTOLOG;
WARNING: Apparent symbolic reference SYSPRINTTOLOG not resolved.
&amp;amp;SYSPRINTTOLOG
28         proc printto log='$HOME/log2.txt' new;run;
&lt;/PRE&gt;
&lt;P&gt;log2.txt:&lt;/P&gt;
&lt;PRE&gt;NOTE: PROZEDUR PRINTTO used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
      

29         %put %symexist(SYSPRINTTOLOG);
0
30         %put &amp;amp;SYSPRINTTOLOG;
WARNING: Apparent symbolic reference SYSPRINTTOLOG not resolved.
&amp;amp;SYSPRINTTOLOG
31         proc printto;run;
&lt;/PRE&gt;
&lt;P&gt;SAS on AIX, so this might be specific to the OS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit:&lt;/P&gt;
&lt;P&gt;Ran the same in batch mode, identical result. Maybe there's an option that disables this?&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 12:10:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406472#M279324</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-23T12:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406474#M279325</link>
      <description>&lt;P&gt;Yes, this is batch things...&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 12:09:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406474#M279325</guid>
      <dc:creator>PSNn</dc:creator>
      <dc:date>2017-10-23T12:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: Log Path</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406475#M279326</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/171188"&gt;@PSNn&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Yes, this is batch things...&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;See my other post. Tested it in workspace server, display manager and batch. Same result everywhere.&lt;/P&gt;
&lt;P&gt;I'm considering opening a track with SAS TS. Either the documentation is incomplete, or something else is fishy.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 12:12:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Log-Path/m-p/406475#M279326</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-23T12:12:09Z</dc:date>
    </item>
  </channel>
</rss>

