<!--
RSS generated by JIRA (4.4#649-r158309) at Sat May 18 11:49:04 CDT 2013

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary add field=key&field=summary to the URL of your request.
For example:
http://dev.clojure.org/jira/sr/jira.issueviews:searchrequest-xml/temp/SearchRequest.xml?jqlQuery=project+%3D+TLOG+AND+status+%3D+Resolved+ORDER+BY+priority+DESC&tempMax=1000&field=key&field=summary
-->
<!-- If you wish to do custom client-side styling of RSS, uncomment this:
<?xml-stylesheet href="http://dev.clojure.org/jira/styles/jiraxml2html.xsl" type="text/xsl"?>
-->
<rss version="0.92">
    <channel>
        <title>Clojure JIRA</title>
        <link>http://dev.clojure.org/jira/secure/IssueNavigator.jspa?reset=true&amp;jqlQuery=project+%3D+TLOG+AND+status+%3D+Resolved+ORDER+BY+priority+DESC</link>
        <description>An XML representation of a search request</description>
                <language>en-us</language>
                        <issue start="0" end="7" total="7"/>
                <build-info>
            <version>4.4</version>
            <build-number>649</build-number>
            <build-date>25-07-2011</build-date>
        </build-info>
<item>
            <title>[TLOG-4] Provided implementations of logging protocols fail.</title>
                <link>http://dev.clojure.org/jira/browse/TLOG-4</link>
                <project id="10030" key="TLOG">tools.logging</project>
                        <description>&lt;p&gt;Example of error when trying to call a Logger protocol function:&lt;/p&gt;

&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;java.lang.IllegalArgumentException: No implementation of method: :enabled? of protocol:
#&apos;clojure.tools.logging.impl/Logger found for class: org.apache.log4j.Logger
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;The bug is the result of combining syntax-quoting with &lt;tt&gt;extend-type&lt;/tt&gt;, e.g.:&lt;/p&gt;

&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;`(do
   (extend-type org.apache.commons.logging.Log
     Logger
     (enabled? [logger# level#] ... )))
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;The syntax-quote turns the above &lt;tt&gt;enabled?&lt;/tt&gt; into &lt;tt&gt;clojure.tools.logging/enabled?&lt;/tt&gt; protocol function name, and then the &lt;tt&gt;extend-type&lt;/tt&gt; turns that into the keyword &lt;tt&gt;:clojure.tools.logging/enabled?&lt;/tt&gt;, which does not match the expected &lt;tt&gt;:enabled?&lt;/tt&gt;.&lt;/p&gt;

&lt;p&gt;Attached patch fixes this by using &lt;tt&gt;extend&lt;/tt&gt; maps rather than &lt;tt&gt;extend-type&lt;/tt&gt;. Also adds some tests.&lt;/p&gt;</description>
                <environment></environment>
            <key id="14652">TLOG-4</key>
            <summary>Provided implementations of logging protocols fail.</summary>
                <type id="1" iconUrl="http://dev.clojure.org/jira/images/icons/bug.gif">Defect</type>
                                <priority id="1" iconUrl="http://dev.clojure.org/jira/images/icons/priority_blocker.gif">Blocker</priority>
                    <status id="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="1">Completed</resolution>
                                <assignee username="ataggart">Alexander Taggart</assignee>
                                <reporter username="ataggart">Alexander Taggart</reporter>
                        <labels>
                    </labels>
                <created>Thu, 29 Sep 2011 14:58:12 -0500</created>
                <updated>Thu, 29 Sep 2011 15:36:11 -0500</updated>
                    <resolved>Thu, 29 Sep 2011 15:36:11 -0500</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="26877" author="ataggart" created="Thu, 29 Sep 2011 15:36:11 -0500"  >&lt;p&gt;Committed:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://github.com/clojure/tools.logging/commit/f9cb0a7232d3a11cb7e74e4c13c3adc054e7e7a2&quot;&gt;https://github.com/clojure/tools.logging/commit/f9cb0a7232d3a11cb7e74e4c13c3adc054e7e7a2&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                    <attachment id="10374" name="fix-broken-extend.patch" size="10479" author="ataggart" created="Thu, 29 Sep 2011 14:58:12 -0500" />
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                            <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Global Rank</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                            <customfield id="customfield_10000" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                <customfieldname>Patch</customfieldname>
                <customfieldvalues>
                        <customfieldvalue key="10002">Code and Test</customfieldvalue>

                </customfieldvalues>
            </customfield>
                                                                                        </customfields>
    </item>

<item>
            <title>[TLOG-1] Non-optimized, no-exception path for logp calls log* with wrong arity</title>
                <link>http://dev.clojure.org/jira/browse/TLOG-1</link>
                <project id="10030" key="TLOG">tools.logging</project>
                        <description>&lt;p&gt;Per Laurent Petit&lt;/p&gt;</description>
                <environment></environment>
            <key id="14446">TLOG-1</key>
            <summary>Non-optimized, no-exception path for logp calls log* with wrong arity</summary>
                <type id="1" iconUrl="http://dev.clojure.org/jira/images/icons/bug.gif">Defect</type>
                                <priority id="3" iconUrl="http://dev.clojure.org/jira/images/icons/priority_major.gif">Major</priority>
                    <status id="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="1">Completed</resolution>
                                <assignee username="ataggart">Alexander Taggart</assignee>
                                <reporter username="ataggart">Alexander Taggart</reporter>
                        <labels>
                    </labels>
                <created>Wed, 1 Jun 2011 11:27:40 -0500</created>
                <updated>Wed, 1 Jun 2011 11:34:52 -0500</updated>
                    <resolved>Wed, 1 Jun 2011 11:34:52 -0500</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="26479" author="ataggart" created="Wed, 1 Jun 2011 11:34:52 -0500"  >&lt;p&gt;&lt;a href=&quot;https://github.com/clojure/tools.logging/commit/687c1833c59ad1204c2a41cf0ed1f53be4a0fa8d&quot;&gt;https://github.com/clojure/tools.logging/commit/687c1833c59ad1204c2a41cf0ed1f53be4a0fa8d&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                    <attachment id="10250" name="TLOG-1.patch" size="1613" author="ataggart" created="Wed, 1 Jun 2011 11:33:21 -0500" />
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                            <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Global Rank</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                            <customfield id="customfield_10000" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                <customfieldname>Patch</customfieldname>
                <customfieldvalues>
                        <customfieldvalue key="10002">Code and Test</customfieldvalue>

                </customfieldvalues>
            </customfield>
                                                                                        </customfields>
    </item>

<item>
            <title>[TLOG-2] Change &quot;log&quot; semantics to &quot;logger&quot; semantics</title>
                <link>http://dev.clojure.org/jira/browse/TLOG-2</link>
                <project id="10030" key="TLOG">tools.logging</project>
                        <description>&lt;p&gt;The relevant patch is named tools.logging-&lt;a href=&quot;http://dev.clojure.org/jira/browse/TLOG-2&quot; title=&quot;Change &amp;quot;log&amp;quot; semantics to &amp;quot;logger&amp;quot; semantics&quot;&gt;&lt;del&gt;TLOG-2&lt;/del&gt;&lt;/a&gt;-v2.diff&lt;/p&gt;

&lt;p&gt;Changes &quot;log&quot; semantics to &quot;logger&quot; semantics.&lt;/p&gt;

&lt;p&gt;Log protocol becomes LoggerProtocol&lt;br/&gt;
LogFactory protocol becomes LoggerFactoryProtocol&lt;br/&gt;
&lt;b&gt;log-factory&lt;/b&gt; becomes &lt;b&gt;logger-factory&lt;/b&gt;&lt;br/&gt;
impl-get-log becomes impl-get-logger&lt;br/&gt;
log function argument name becomes logger function argument name&lt;br/&gt;
log# macro autosym becomes logger# macro autosym&lt;/p&gt;</description>
                <environment></environment>
            <key id="14480">TLOG-2</key>
            <summary>Change &quot;log&quot; semantics to &quot;logger&quot; semantics</summary>
                <type id="1" iconUrl="http://dev.clojure.org/jira/images/icons/bug.gif">Defect</type>
                                <priority id="3" iconUrl="http://dev.clojure.org/jira/images/icons/priority_major.gif">Major</priority>
                    <status id="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="1">Completed</resolution>
                                <assignee username="laurentpetit">Laurent Petit</assignee>
                                <reporter username="laurentpetit">Laurent Petit</reporter>
                        <labels>
                    </labels>
                <created>Tue, 5 Jul 2011 17:05:09 -0500</created>
                <updated>Wed, 6 Jul 2011 15:00:51 -0500</updated>
                    <resolved>Wed, 6 Jul 2011 15:00:50 -0500</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="26553" author="ataggart" created="Wed, 6 Jul 2011 15:00:50 -0500"  >&lt;p&gt;Committed to master:&lt;br/&gt;
&lt;a href=&quot;https://github.com/clojure/tools.logging/commit/0a5f9bd3148cf078dd0b62aece5f92a970b5aba3&quot;&gt;https://github.com/clojure/tools.logging/commit/0a5f9bd3148cf078dd0b62aece5f92a970b5aba3&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                    <attachment id="10271" name="tools.logging-TLOG-2-v2.diff" size="28352" author="laurentpetit" created="Tue, 5 Jul 2011 17:13:39 -0500" />
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                <customfield id="customfield_10002" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                <customfieldname>Approval</customfieldname>
                <customfieldvalues>
                        <customfieldvalue key="10007">Ok</customfieldvalue>

                </customfieldvalues>
            </customfield>
                                                                                    <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Global Rank</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                            <customfield id="customfield_10000" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                <customfieldname>Patch</customfieldname>
                <customfieldvalues>
                        <customfieldvalue key="10002">Code and Test</customfieldvalue>

                </customfieldvalues>
            </customfield>
                                                                                        </customfields>
    </item>

<item>
            <title>[TLOG-3] Move implementation-specific details out of main ns</title>
                <link>http://dev.clojure.org/jira/browse/TLOG-3</link>
                <project id="10030" key="TLOG">tools.logging</project>
                        <description>&lt;p&gt;The protocols which allow the main functions/macros to adapt to implementation specific logging libraries do not need to be in the clojure.tools.logging namespace since they are not intended to be used by consumers.&lt;/p&gt;

&lt;p&gt;Plan:&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;Move protocols into clojure.tools.logging.impl&lt;/li&gt;
	&lt;li&gt;Move implementation-specific code (e.g., the extentions to the protocols) into separate namespaces, e.g., clojure.tools.logging.log4j.&lt;/li&gt;
&lt;/ul&gt;
</description>
                <environment></environment>
            <key id="14481">TLOG-3</key>
            <summary>Move implementation-specific details out of main ns</summary>
                <type id="4" iconUrl="http://dev.clojure.org/jira/images/icons/improvement.gif">Enhancement</type>
                                <priority id="3" iconUrl="http://dev.clojure.org/jira/images/icons/priority_major.gif">Major</priority>
                    <status id="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="1">Completed</resolution>
                                <assignee username="ataggart">Alexander Taggart</assignee>
                                <reporter username="ataggart">Alexander Taggart</reporter>
                        <labels>
                    </labels>
                <created>Wed, 6 Jul 2011 15:07:28 -0500</created>
                <updated>Thu, 7 Jul 2011 18:49:03 -0500</updated>
                    <resolved>Thu, 7 Jul 2011 18:49:03 -0500</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="26556" author="ataggart" created="Thu, 7 Jul 2011 18:49:03 -0500"  >&lt;p&gt;&lt;a href=&quot;https://github.com/clojure/tools.logging/commit/42dfba84a373e52a4e80af6467e47761e6f20678&quot;&gt;https://github.com/clojure/tools.logging/commit/42dfba84a373e52a4e80af6467e47761e6f20678&lt;/a&gt;&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                    <attachment id="10272" name="refactor-namespaces.patch" size="34433" author="ataggart" created="Wed, 6 Jul 2011 16:26:33 -0500" />
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                <customfield id="customfield_10002" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                <customfieldname>Approval</customfieldname>
                <customfieldvalues>
                        <customfieldvalue key="10007">Ok</customfieldvalue>

                </customfieldvalues>
            </customfield>
                                                                                    <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Global Rank</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                            <customfield id="customfield_10000" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                <customfieldname>Patch</customfieldname>
                <customfieldvalues>
                        <customfieldvalue key="10002">Code and Test</customfieldvalue>

                </customfieldvalues>
            </customfield>
                                                                                        </customfields>
    </item>

<item>
            <title>[TLOG-7] Reflection warnings</title>
                <link>http://dev.clojure.org/jira/browse/TLOG-7</link>
                <project id="10030" key="TLOG">tools.logging</project>
                        <description>&lt;p&gt;Reflection warning, clojure/tools/logging.clj:270 - reference to field isTraceEnabled can&apos;t be resolved.&lt;br/&gt;
Reflection warning, clojure/tools/logging.clj:270 - reference to field isDebugEnabled can&apos;t be resolved.&lt;br/&gt;
Reflection warning, clojure/tools/logging.clj:270 - reference to field isInfoEnabled can&apos;t be resolved.&lt;br/&gt;
Reflection warning, clojure/tools/logging.clj:270 - reference to field isWarnEnabled can&apos;t be resolved.&lt;br/&gt;
Reflection warning, clojure/tools/logging.clj:270 - reference to field isErrorEnabled can&apos;t be resolved.&lt;br/&gt;
Reflection warning, clojure/tools/logging.clj:270 - reference to field isFatalEnabled can&apos;t be resolved.&lt;br/&gt;
Reflection warning, clojure/tools/logging.clj:270 - call to trace can&apos;t be resolved.&lt;br/&gt;
Reflection warning, clojure/tools/logging.clj:270 - call to debug can&apos;t be resolved.&lt;br/&gt;
Reflection warning, clojure/tools/logging.clj:270 - call to info can&apos;t be resolved.&lt;br/&gt;
Reflection warning, clojure/tools/logging.clj:270 - call to warn can&apos;t be resolved.&lt;br/&gt;
Reflection warning, clojure/tools/logging.clj:270 - call to error can&apos;t be resolved.&lt;br/&gt;
Reflection warning, clojure/tools/logging.clj:270 - call to fatal can&apos;t be resolved.&lt;/p&gt;</description>
                <environment></environment>
            <key id="15335">TLOG-7</key>
            <summary>Reflection warnings</summary>
                <type id="1" iconUrl="http://dev.clojure.org/jira/images/icons/bug.gif">Defect</type>
                                <priority id="3" iconUrl="http://dev.clojure.org/jira/images/icons/priority_major.gif">Major</priority>
                    <status id="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="1">Completed</resolution>
                                <assignee username="ataggart">Alexander Taggart</assignee>
                                <reporter username="seancorfield">Sean Corfield</reporter>
                        <labels>
                    </labels>
                <created>Mon, 16 Apr 2012 13:09:11 -0500</created>
                <updated>Wed, 24 Apr 2013 12:33:59 -0500</updated>
                    <resolved>Sat, 5 May 2012 15:29:42 -0500</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="28395" author="ataggart" created="Sat, 5 May 2012 15:26:31 -0500"  >&lt;p&gt;Adds type-hints to all implementation-wrapping fns.&lt;/p&gt;</comment>
                    <comment id="30985" author="beffbernard" created="Tue, 23 Apr 2013 16:39:46 -0500"  >&lt;p&gt;A few of my projects are still reflecting using tools.logging 0.2.6 and slf4j-log4j12 &quot;1.7.2&quot;. I&apos;ve attached a patch that I&apos;ve started using to fix this issue.&lt;/p&gt;</comment>
                    <comment id="30986" author="beffbernard" created="Tue, 23 Apr 2013 16:41:11 -0500"  >&lt;p&gt;I&apos;m a registered contributor to clojure.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://clojure.org/contributing&quot;&gt;http://clojure.org/contributing&lt;/a&gt;&lt;/p&gt;</comment>
                    <comment id="30988" author="jafingerhut" created="Wed, 24 Apr 2013 12:33:59 -0500"  >&lt;p&gt;Trevor, since this ticket was already closed and marked as completed some time ago, it is probably best to create a new ticket and attach your patch to that.  I know the issue is similar to this existing ticket, but best to have new tickets for new work.&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                    <attachment id="11968" name="0001-Fix-TLOG-7-Remove-reflection-warnings.patch" size="14082" author="beffbernard" created="Tue, 23 Apr 2013 16:41:11 -0500" />
                    <attachment id="11172" name="TLOG-7.1.patch" size="2901" author="ataggart" created="Sat, 5 May 2012 15:26:31 -0500" />
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                            <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Global Rank</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                                                                            </customfields>
    </item>

<item>
            <title>[TLOG-5] Improvement of sample code in README.md</title>
                <link>http://dev.clojure.org/jira/browse/TLOG-5</link>
                <project id="10030" key="TLOG">tools.logging</project>
                        <description>&lt;p&gt;README.md uses the following code to show the usage of tools.logging.&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;(ns example.core
  (:use [clojure.tools.logging :only (info error)]))

(defn divide [one two]
  (&lt;span class=&quot;code-keyword&quot;&gt;try&lt;/span&gt;
    (info &lt;span class=&quot;code-quote&quot;&gt;&quot;Calculated&quot;&lt;/span&gt; (/ one two))
    (&lt;span class=&quot;code-keyword&quot;&gt;catch&lt;/span&gt; Exception ex
      (error ex &lt;span class=&quot;code-quote&quot;&gt;&quot;There was an error in calculation&quot;&lt;/span&gt;))))&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;If log4j.rootLogger in the given log4j.properties is updated to &quot;ERROR, A1&quot;. &quot;(divide 10 0)&quot; won&apos;t evaluate &quot;(error ex &quot;There was an error in calculation&quot;)&quot;. The reason is that INFO logging level is lower than ERROR logging level. So the info macro will not evaluate &quot;(/ one two)&quot; since the specific INFO logging level is not in effect.&lt;/p&gt;

&lt;p&gt;New tools.logging users often expect &quot;(divide 10 0)&quot; to produce logging with ERROR level. They are confused with the above behaviour. So I suggest to make some change to the sample code. Maybe the following code:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;(ns example.core
  (:use [clojure.tools.logging :only (info error)]))

(defn divide [one two]
  (&lt;span class=&quot;code-keyword&quot;&gt;try&lt;/span&gt; 
    (info &lt;span class=&quot;code-quote&quot;&gt;&quot;Calculating&quot;&lt;/span&gt; one two)
    (/ one two)
    (&lt;span class=&quot;code-keyword&quot;&gt;catch&lt;/span&gt; Exception ex
      (error ex &lt;span class=&quot;code-quote&quot;&gt;&quot;There was an error in calculation&quot;&lt;/span&gt;))))&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
</description>
                <environment></environment>
            <key id="14700">TLOG-5</key>
            <summary>Improvement of sample code in README.md</summary>
                <type id="4" iconUrl="http://dev.clojure.org/jira/images/icons/improvement.gif">Enhancement</type>
                                <priority id="4" iconUrl="http://dev.clojure.org/jira/images/icons/priority_minor.gif">Minor</priority>
                    <status id="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="1">Completed</resolution>
                                <assignee username="ataggart">Alexander Taggart</assignee>
                                <reporter username="jingguo">Jingguo Yao</reporter>
                        <labels>
                    </labels>
                <created>Fri, 14 Oct 2011 02:01:33 -0500</created>
                <updated>Mon, 17 Oct 2011 20:33:57 -0500</updated>
                    <resolved>Mon, 17 Oct 2011 20:33:57 -0500</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                                <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                            <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Global Rank</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                                                                            </customfields>
    </item>

<item>
            <title>[TLOG-6] tools.logging does not log to stdout when run from swank-clojure</title>
                <link>http://dev.clojure.org/jira/browse/TLOG-6</link>
                <project id="10030" key="TLOG">tools.logging</project>
                        <description>&lt;p&gt;Trying to evaluate (info &quot;Hello, World!&quot;) doesn&apos;t print to stdout when evaluating from within emacs. It works if I `lein run` however.&lt;/p&gt;</description>
                <environment>tools.logging &amp;quot;0.2.3&amp;quot;, Mac OS X Lion, emacs 23.4, swank-clojure 1.3.4, slime 20100404</environment>
            <key id="15210">TLOG-6</key>
            <summary>tools.logging does not log to stdout when run from swank-clojure</summary>
                <type id="1" iconUrl="http://dev.clojure.org/jira/images/icons/bug.gif">Defect</type>
                                <priority id="4" iconUrl="http://dev.clojure.org/jira/images/icons/priority_minor.gif">Minor</priority>
                    <status id="5" iconUrl="http://dev.clojure.org/jira/images/icons/status_resolved.gif">Resolved</status>
                    <resolution id="2">Declined</resolution>
                                <assignee username="ataggart">Alexander Taggart</assignee>
                                <reporter username="beffbernard">Trevor Bernard</reporter>
                        <labels>
                    </labels>
                <created>Tue, 7 Feb 2012 20:33:26 -0600</created>
                <updated>Tue, 7 Feb 2012 21:07:59 -0600</updated>
                    <resolved>Tue, 7 Feb 2012 21:07:59 -0600</resolved>
                                                                    <due></due>
                    <votes>0</votes>
                        <watches>0</watches>
                        <comments>
                    <comment id="27694" author="beffbernard" created="Tue, 7 Feb 2012 20:44:38 -0600"  >&lt;p&gt;It works when I use the inferior-lisp process but not in slime&lt;/p&gt;</comment>
                    <comment id="27695" author="ataggart" created="Tue, 7 Feb 2012 21:07:59 -0600"  >&lt;p&gt;Configuring swank/slime to work with wherever your log implementation writes its output is not a &lt;tt&gt;tools.logging&lt;/tt&gt; issue.&lt;/p&gt;</comment>
                </comments>
                    <attachments>
                </attachments>
            <subtasks>
        </subtasks>
                <customfields>
                                                                                            <customfield id="customfield_10010" key="com.pyxis.greenhopper.jira:gh-global-rank">
                <customfieldname>Global Rank</customfieldname>
                <customfieldvalues>
                    
                </customfieldvalues>
            </customfield>
                                                                                                            </customfields>
    </item>
</channel>
</rss>