Re: DebugLogger oddity

2009-09-26 Thread Shalin Shekhar Mangar
On Sun, Sep 27, 2009 at 9:41 AM, Mark Miller wrote: > DebugLogger has the following code: > >public DebugInfo(String name, int type, DebugInfo parent) { > this.name = name; > this.type = type; > this.parent = parent; > lst = new NamedList(); > if (parent != null) { >

DebugLogger oddity

2009-09-26 Thread Mark Miller
DebugLogger has the following code: public DebugInfo(String name, int type, DebugInfo parent) { this.name = name; this.type = type; this.parent = parent; lst = new NamedList(); if (parent != null) { String displayName = null; if (type == SolrWriter