<?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/" version="2.0">
  <channel>
    <title>lekkimworld.comopenlog</title>
    <link>http://lekkimworld.com/tags/openlog/</link>
    <description>IBM Lotus Notes/Domino, Websphere, IBM Connections, mobile, web, JavaScript, Java...</description>
    <language>en</language>
    <copyright>Mikkel Flindt Heisterberg (mh [at] intravision [dot] dk</copyright>
    <pubDate>Sat, 19 May 2012 06:50:25 GMT</pubDate>
    <dc:creator>Mikkel Flindt Heisterberg (mh [at] intravision [dot] dk</dc:creator>
    <dc:date>2012-05-19T06:50:25Z</dc:date>
    <dc:language>en</dc:language>
    <dc:rights>Mikkel Flindt Heisterberg (mh [at] intravision [dot] dk</dc:rights>
    <image>
      <title>lekkimworld.comopenlog</title>
      <url>http://lekkimworld.com/tags/openlog/</url>
    </image>
    <item>
      <title>Using OpenAudit to save my hair... :-)</title>
      <link>http://lekkimworld.com/2006/11/07/using_openaudit_to_save_my_hair.html</link>
      <content:encoded>Now that there &lt;a href="http://www.bruceelgort.com/blogs/be.nsf/plinks/BELT-6V83WG"&gt;won't be an OpenNTF session at Lotusphere 2007&lt;/a&gt; I thought I would share how I just used Open Audit to implement auditing logging and hence save my hair... Furthermore I made to little hack in Open Audit that others might benefit from so I thought I would share.&lt;p&gt;&lt;a href="http://lekkimworld.com/2006/11/07/using_openaudit_to_save_my_hair.html"&gt;Read more...&lt;/a&gt;&lt;/p&gt;</content:encoded>
      <category domain="http://lekkimworld.com/categories/ls/">LotusScript</category>
      <category domain="http://lekkimworld.com/tags/lotusscript/">lotusscript</category>
      <category domain="http://lekkimworld.com/tags/open_audit/">open_audit</category>
      <category domain="http://lekkimworld.com/tags/openlog/">openlog</category>
      <category domain="http://lekkimworld.com/tags/openntf/">openntf</category>
      <pubDate>Tue, 07 Nov 2006 21:25:52 GMT</pubDate>
      <guid isPermaLink="false">tag:lekkimworld.com,2006-11-07:default/1162934752880</guid>
      <dc:date>2006-11-07T21:25:52Z</dc:date>
    </item>
    <item>
      <title>AutoPurge for OpenLog</title>
      <link>http://lekkimworld.com/2006/08/16/autopurge_for_openlog.html</link>
      <content:encoded>&lt;p&gt;
We are using the &lt;a href="http://www.openntf.org/Projects/pmt.nsf/ProjectLookup/OpenLog"&gt;OpenLog&lt;/a&gt; logging framework written by &lt;a href="http://www.nsftools.com"&gt;Julian&lt;/a&gt; extensively in our applications but in logging intensive applications or when running with our &lt;a href="http://lekkimworld.com/2005/12/09/1134129939867.html"&gt;custom DEBUG-level enabled&lt;/a&gt; you can generate a lot of logging documents. Cleaning these up should preferably be done automatically on a scheduled basis so I wrote a small agent to purge log documents older than 6 months and thought I would share:
&lt;pre class="code"&gt;
Sub Initialize
   Dim session As New NotesSession
   Dim db As NotesDatabase
   Dim dc As NotesDocumentCollection
   Dim dt As NotesDateTime
	
   Set dt = New NotesDateTime(session.International.Today)
   Call dt.AdjustMonth(-6)
   Set db = session.CurrentDatabase
   Set dc = db.Search(|Form="LogEvent" &amp; LogEventTime&amp;lt;@TextToTime("| + dt.DateOnly + |")|, Nothing, 0)
   
   Call dc.RemoveAll(True)
End Sub
&lt;/pre&gt;
Really simple and nothing much to it...
&lt;/p&gt;</content:encoded>
      <category domain="http://lekkimworld.com/categories/ls/">LotusScript</category>
      <category domain="http://lekkimworld.com/categories/ibm_products/">IBM</category>
      <category domain="http://lekkimworld.com/tags/lotusscript/">lotusscript</category>
      <category domain="http://lekkimworld.com/tags/openlog/">openlog</category>
      <category domain="http://lekkimworld.com/tags/openntf/">openntf</category>
      <pubDate>Wed, 16 Aug 2006 09:06:37 GMT</pubDate>
      <guid isPermaLink="false">tag:lekkimworld.com,2006-08-16:default/1155719197074</guid>
      <dc:date>2006-08-16T09:06:37Z</dc:date>
    </item>
  </channel>
</rss>


