[jira] Commented: (SOLR-554) Hierarchical JDK log level selector for SOLR Admin

2008-08-05 Thread Sean Timm (JIRA)

[ 
https://issues.apache.org/jira/browse/SOLR-554?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12619886#action_12619886
 ] 

Sean Timm commented on SOLR-554:


There have been times that I've wanted to turn on logging for components 
outside of Solr.  Since it is hierarchical and sorted alphabetically, I've 
never found it a problem to find the loggers that I am looking for.  My 
preference would be to keep all of the available loggers in the table and keep 
the configuration to a minimum (right now the user does not need to configure 
anything).

> Hierarchical JDK log level selector for SOLR Admin
> --
>
> Key: SOLR-554
> URL: https://issues.apache.org/jira/browse/SOLR-554
> Project: Solr
>  Issue Type: Improvement
>  Components: web gui
>Reporter: Sean Timm
>Assignee: Shalin Shekhar Mangar
>Priority: Minor
> Fix For: 1.3
>
> Attachments: LogLevelSelection.java, SOLR-554-screenshot-3.jpg, 
> SOLR-554.patch, SOLR-554.patch, SOLR-554.patch
>
>
> An admin web page to allow displaying and setting the log level of  
> hierarchical loggers from the UI at runtime.  The existing logging.jsp only 
> sets and displays the root log level.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (SOLR-554) Hierarchical JDK log level selector for SOLR Admin

2008-08-02 Thread Shalin Shekhar Mangar (JIRA)

[ 
https://issues.apache.org/jira/browse/SOLR-554?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12619286#action_12619286
 ] 

Shalin Shekhar Mangar commented on SOLR-554:


Sean -- this looks great and it is certainly more useful than the current 
logging.jsp

Is there a reason for not making this as a request handler? Currently, it 
displays all loggers available to it which also includes org.apache.catalina, 
ContainerBase and even javax.management.mbeanserver when running Solr under 
tomcat. It may be better to limit loggers to org.apache.solr by default. If 
this is made a request handler, we can configure the logger names it should 
support in solrconfig.xml and users can add packages of their custom solr 
plugins too. I'll see if I can find some time to make these changes.

Thoughts?

> Hierarchical JDK log level selector for SOLR Admin
> --
>
> Key: SOLR-554
> URL: https://issues.apache.org/jira/browse/SOLR-554
> Project: Solr
>  Issue Type: Improvement
>  Components: web gui
>Reporter: Sean Timm
>Assignee: Shalin Shekhar Mangar
>Priority: Minor
> Fix For: 1.3
>
> Attachments: LogLevelSelection.java, SOLR-554-screenshot-3.jpg, 
> SOLR-554.patch, SOLR-554.patch, SOLR-554.patch
>
>
> An admin web page to allow displaying and setting the log level of  
> hierarchical loggers from the UI at runtime.  The existing logging.jsp only 
> sets and displays the root log level.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (SOLR-554) Hierarchical JDK log level selector for SOLR Admin

2008-07-18 Thread David Smiley (JIRA)

[ 
https://issues.apache.org/jira/browse/SOLR-554?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12614810#action_12614810
 ] 

David Smiley commented on SOLR-554:
---

This feature may be useful, but it doesn't strike me as something that belongs 
in any web application (Solr included).  It strikes me as a feature that may or 
may not be there in your web server.

> Hierarchical JDK log level selector for SOLR Admin
> --
>
> Key: SOLR-554
> URL: https://issues.apache.org/jira/browse/SOLR-554
> Project: Solr
>  Issue Type: Improvement
>  Components: web gui
>Reporter: Sean Timm
>Priority: Minor
> Fix For: 1.3
>
> Attachments: LogLevelSelection.java, SOLR-554-screenshot-3.jpg, 
> SOLR-554.patch, SOLR-554.patch, SOLR-554.patch
>
>
> An admin web page to allow displaying and setting the log level of  
> hierarchical loggers from the UI at runtime.  The existing logging.jsp only 
> sets and displays the root log level.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (SOLR-554) Hierarchical JDK log level selector for SOLR Admin

2008-05-23 Thread Sean Timm (JIRA)

[ 
https://issues.apache.org/jira/browse/SOLR-554?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12599434#action_12599434
 ] 

Sean Timm commented on SOLR-554:


No, like the existing logging.jsp, it doesn't touch the configuration file.  
When the server is bounced, the log levels revert back to those in the config 
file.

> Hierarchical JDK log level selector for SOLR Admin
> --
>
> Key: SOLR-554
> URL: https://issues.apache.org/jira/browse/SOLR-554
> Project: Solr
>  Issue Type: Improvement
>  Components: web gui
>Reporter: Sean Timm
>Priority: Minor
> Attachments: LogLevelSelection.java, SOLR-554-screenshot-3.jpg, 
> SOLR-554.patch, SOLR-554.patch, SOLR-554.patch
>
>
> An admin web page to allow displaying and setting the log level of  
> hierarchical loggers from the UI at runtime.  The existing logging.jsp only 
> sets and displays the root log level.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (SOLR-554) Hierarchical JDK log level selector for SOLR Admin

2008-05-23 Thread Otis Gospodnetic (JIRA)

[ 
https://issues.apache.org/jira/browse/SOLR-554?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12599404#action_12599404
 ] 

Otis Gospodnetic commented on SOLR-554:
---

This looks very good to me.  I never used the admin log page's functionality.  
Does clicking "set" actually generate the correct log config file (and it 
overwrites the old one)?


> Hierarchical JDK log level selector for SOLR Admin
> --
>
> Key: SOLR-554
> URL: https://issues.apache.org/jira/browse/SOLR-554
> Project: Solr
>  Issue Type: Improvement
>  Components: web gui
>Reporter: Sean Timm
>Priority: Minor
> Attachments: LogLevelSelection.java, SOLR-554-screenshot-3.jpg, 
> SOLR-554.patch, SOLR-554.patch, SOLR-554.patch
>
>
> An admin web page to allow displaying and setting the log level of  
> hierarchical loggers from the UI at runtime.  The existing logging.jsp only 
> sets and displays the root log level.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.