<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to bugs</title><link>https://sourceforge.net/p/qcijutils/bugs/</link><description>Recent changes to bugs</description><atom:link href="https://sourceforge.net/p/qcijutils/bugs/feed.rss" rel="self"/><language>en</language><lastBuildDate>Mon, 15 Jan 2001 05:39:38 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/qcijutils/bugs/feed.rss" rel="self" type="application/rss+xml"/><item><title>Broken link in javadoc</title><link>https://sourceforge.net/p/qcijutils/bugs/6/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;There appear to be some broken links int he javadoc overview that still point to the old site. Need to fix these links and make sure there are no more in the rest of the docuemntation.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Eric Vought</dc:creator><pubDate>Mon, 15 Jan 2001 05:39:38 -0000</pubDate><guid>https://sourceforge.net62bf2b94ab33454d492e7ffd419b2bcce7b565d4</guid></item><item><title>Broken links in README</title><link>https://sourceforge.net/p/qcijutils/bugs/5/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;As reported by Juniate Lees, there are broken links in the README file which point to www.qlue.com/downloads. These need to be updated.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Eric Vought</dc:creator><pubDate>Thu, 14 Dec 2000 22:39:33 -0000</pubDate><guid>https://sourceforge.netc04597b8c1830c4f912fe1dbee6e5cca9f87732a</guid></item><item><title>&amp;quot;method&amp;quot; should be in SimpleEntryFormatter array</title><link>https://sourceforge.net/p/qcijutils/bugs/4/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;This bug is in response to message 75489 from Thomas Bishop.&lt;br /&gt;
The &amp;amp;quot;method&amp;amp;quot; field of LogEntry needs to be made available through SimpleEntryFormatter's array, if not in the default format.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Eric Vought</dc:creator><pubDate>Mon, 20 Nov 2000 17:34:36 -0000</pubDate><guid>https://sourceforge.neta81eae3beebe6d8fa58f41b3bedcaeabc3e5f31f</guid></item><item><title>Erroneous filtering of log messages.</title><link>https://sourceforge.net/p/qcijutils/bugs/3/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;In the following sample program, I attempt to set the&lt;br /&gt;
logListener to print INFO level messages. However, INFO&lt;br /&gt;
messages do not get printed. ALERT level messages do get&lt;br /&gt;
printed though.&lt;/p&gt;
&lt;p&gt;//&lt;br /&gt;
// Class Name:  TestLogger.java &lt;br /&gt;
//&lt;br /&gt;
//&lt;br /&gt;
// Demonstrates error in Logger&lt;br /&gt;
//&lt;br /&gt;
// Author:      Thomas Bishop&lt;br /&gt;
// Date:        11/10/2000&lt;br /&gt;
//&lt;br /&gt;
//---------------------------------------------------------------------------&lt;/p&gt;
&lt;p&gt;// import java.util.List;&lt;br /&gt;
// import java.net.InetAddress;&lt;br /&gt;
// import java.util.*;&lt;/p&gt;
&lt;p&gt;import java.io.IOException;&lt;br /&gt;
import java.io.PrintWriter;&lt;/p&gt;
&lt;p&gt;import com.qlue.util.logging.LogEntry;&lt;br /&gt;
import com.qlue.util.logging.LogListener;&lt;br /&gt;
import com.qlue.util.logging.WriterLogListener;&lt;br /&gt;
import com.qlue.util.logging.SimpleEntryFormatter;&lt;br /&gt;
import com.qlue.util.logging.Logger;&lt;br /&gt;
import com.qlue.util.logging.LogMask;&lt;/p&gt;
&lt;p&gt;class TestLogger &lt;br /&gt;
{&lt;/p&gt;
&lt;p&gt;private Logger logger;&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="n"&gt;static&lt;/span&gt; &lt;span class="n"&gt;public&lt;/span&gt; &lt;span class="n"&gt;void&lt;/span&gt; &lt;span class="n"&gt;main&lt;/span&gt;&lt;span class="o"&gt;\&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;String&lt;/span&gt;&lt;span class="o"&gt;\&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="o"&gt;\&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="n"&gt;args&lt;/span&gt;&lt;span class="o"&gt;\&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;\&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="n"&gt;new&lt;/span&gt; &lt;span class="n"&gt;TestLogger&lt;/span&gt;&lt;span class="o"&gt;\&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="o"&gt;\&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="o"&gt;\&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="n"&gt;TestLogger&lt;/span&gt;&lt;span class="o"&gt;\&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="o"&gt;\&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;\&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;PrintWriter pw = new PrintWriter(System.out, true);&lt;br /&gt;
LogListener logListener = new WriterLogListener(LogMask.INFO, pw, &lt;br /&gt;
new SimpleEntryFormatter());&lt;/p&gt;
&lt;p&gt;String osName = System.getProperty(&amp;amp;quot;os.name&amp;amp;quot;);&lt;br /&gt;
String logMessage;&lt;br /&gt;
logger = new Logger();&lt;/p&gt;
&lt;p&gt;try {&lt;br /&gt;
logListener.open();&lt;br /&gt;
logListener.setLogMask(LogMask.INFO);&lt;br /&gt;
logger.addLogListener(logListener);&lt;/p&gt;
&lt;p&gt;logMessage = &amp;amp;quot;OS Platform: &amp;amp;quot; + osName;&lt;br /&gt;
logger.logEntry(this, &amp;amp;quot;Register(): &amp;amp;quot;,&lt;br /&gt;
LogMask.INFO, logMessage, null);&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;catch (IOException e) {&lt;br /&gt;
e.printStackTrace();&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;logger.logEntry(this, &amp;amp;quot;Register(): &amp;amp;quot;,&lt;br /&gt;
LogMask.ALERT, this.toString(), null);&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="o"&gt;\&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;}&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Thomas Bishop</dc:creator><pubDate>Fri, 10 Nov 2000 21:34:10 -0000</pubDate><guid>https://sourceforge.netbe7bbe7eb865abfd84bb0bf0f00237e7301c0be0</guid></item><item><title>SimpleEntry Formatter prints numeric entry type</title><link>https://sourceforge.net/p/qcijutils/bugs/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;SimpleEntryFormatter's default format prints the numeric&lt;br /&gt;
entry type instead of a string (e.g. &amp;amp;quot;DEBUG&amp;amp;quot;). Now that we have the capability to map the numbers to descriptive strings, the string should be printed. The numbers are not&lt;br /&gt;
useful in log messages or while debugging.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Eric Vought</dc:creator><pubDate>Thu, 21 Sep 2000 17:24:18 -0000</pubDate><guid>https://sourceforge.net32cbb715b35d102426981a5b0b04aed2b96e6dd5</guid></item><item><title>LogMask constants are incorrectly deprecated</title><link>https://sourceforge.net/p/qcijutils/bugs/1/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Constants in LogMask have been incorrectly marked with the&lt;br /&gt;
@deprectaed tag. These constants should not be deprecated. &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Eric Vought</dc:creator><pubDate>Thu, 21 Sep 2000 17:19:25 -0000</pubDate><guid>https://sourceforge.netbc47230757cea5a534fa99de66ba7bedfad59fde</guid></item></channel></rss>