You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by "David Jencks (JIRA)" <de...@geronimo.apache.org> on 2005/07/21 02:33:45 UTC

[jira] Created: (GERONIMO-786) list of unstarted gbeans is no longer printed on console after server startup

list of unstarted gbeans is no longer printed on console after server startup
-----------------------------------------------------------------------------

         Key: GERONIMO-786
         URL: http://issues.apache.org/jira/browse/GERONIMO-786
     Project: Geronimo
        Type: Bug
    Versions: 1.0-M5    
    Reporter: David Jencks
 Assigned to: Aaron Mulder 


IMO the console should continue to print the list of gbeans that are not started at the end of server startup.  This is a valuable notice that something is wrong.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Closed: (GERONIMO-786) list of unstarted gbeans is no longer printed on console after server startup

Posted by "Vamsavardhana Reddy (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMO-786?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vamsavardhana Reddy closed GERONIMO-786.
----------------------------------------


> list of unstarted gbeans is no longer printed on console after server startup
> -----------------------------------------------------------------------------
>
>                 Key: GERONIMO-786
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-786
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>    Affects Versions: 1.0-M5
>            Reporter: David Jencks
>         Assigned To: Aaron Mulder
>             Fix For: 1.0-M5
>
>
> IMO the console should continue to print the list of gbeans that are not started at the end of server startup.  This is a valuable notice that something is wrong.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (GERONIMO-786) list of unstarted gbeans is no longer printed on console after server startup

Posted by "Aaron Mulder (JIRA)" <de...@geronimo.apache.org>.
    [ http://issues.apache.org/jira/browse/GERONIMO-786?page=comments#action_12316286 ] 

Aaron Mulder commented on GERONIMO-786:
---------------------------------------

Do you know where the code is for that, or the exact text of the message I can search on?  I suspect it was an INFO message and is now in the log but not on the screen.

> list of unstarted gbeans is no longer printed on console after server startup
> -----------------------------------------------------------------------------
>
>          Key: GERONIMO-786
>          URL: http://issues.apache.org/jira/browse/GERONIMO-786
>      Project: Geronimo
>         Type: Bug
>     Versions: 1.0-M5
>     Reporter: David Jencks
>     Assignee: Aaron Mulder

>
> IMO the console should continue to print the list of gbeans that are not started at the end of server startup.  This is a valuable notice that something is wrong.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (GERONIMO-786) list of unstarted gbeans is no longer printed on console after server startup

Posted by "David Jencks (JIRA)" <de...@geronimo.apache.org>.
    [ http://issues.apache.org/jira/browse/GERONIMO-786?page=comments#action_12316287 ] 

David Jencks commented on GERONIMO-786:
---------------------------------------

Daemon, lines 267 ff

            Set allGBeans = kernel.listGBeans(JMXUtil.getObjectName("*:*"));
            for (Iterator iterator = allGBeans.iterator(); iterator.hasNext();) {
                ObjectName objectName = (ObjectName) iterator.next();
                try {
                    int state = kernel.getGBeanState(objectName);
                    if (state != State.RUNNING_INDEX) {
                        log.info("GBean " + objectName + " is not running. Current state: " + State.fromInt(state).getName());
                    }
                } catch (GBeanNotFoundException e) {
                    log.info("Alleged GBean " + objectName + " is not a GBean");
                }
            }


> list of unstarted gbeans is no longer printed on console after server startup
> -----------------------------------------------------------------------------
>
>          Key: GERONIMO-786
>          URL: http://issues.apache.org/jira/browse/GERONIMO-786
>      Project: Geronimo
>         Type: Bug
>     Versions: 1.0-M5
>     Reporter: David Jencks
>     Assignee: Aaron Mulder

>
> IMO the console should continue to print the list of gbeans that are not started at the end of server startup.  This is a valuable notice that something is wrong.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (GERONIMO-786) list of unstarted gbeans is no longer printed on console after server startup

Posted by "John Sisson (JIRA)" <de...@geronimo.apache.org>.
    [ http://issues.apache.org/jira/browse/GERONIMO-786?page=comments#action_12316288 ] 

John Sisson commented on GERONIMO-786:
--------------------------------------

I think the message is is at Daemon.java:273

> list of unstarted gbeans is no longer printed on console after server startup
> -----------------------------------------------------------------------------
>
>          Key: GERONIMO-786
>          URL: http://issues.apache.org/jira/browse/GERONIMO-786
>      Project: Geronimo
>         Type: Bug
>     Versions: 1.0-M5
>     Reporter: David Jencks
>     Assignee: Aaron Mulder

>
> IMO the console should continue to print the list of gbeans that are not started at the end of server startup.  This is a valuable notice that something is wrong.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Resolved: (GERONIMO-786) list of unstarted gbeans is no longer printed on console after server startup

Posted by "Aaron Mulder (JIRA)" <de...@geronimo.apache.org>.
     [ http://issues.apache.org/jira/browse/GERONIMO-786?page=all ]
     
Aaron Mulder resolved GERONIMO-786:
-----------------------------------

    Fix Version: 1.0-M5
     Resolution: Fixed

> list of unstarted gbeans is no longer printed on console after server startup
> -----------------------------------------------------------------------------
>
>          Key: GERONIMO-786
>          URL: http://issues.apache.org/jira/browse/GERONIMO-786
>      Project: Geronimo
>         Type: Bug
>     Versions: 1.0-M5
>     Reporter: David Jencks
>     Assignee: Aaron Mulder
>      Fix For: 1.0-M5

>
> IMO the console should continue to print the list of gbeans that are not started at the end of server startup.  This is a valuable notice that something is wrong.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (GERONIMO-786) list of unstarted gbeans is no longer printed on console after server startup

Posted by "Aaron Mulder (JIRA)" <de...@geronimo.apache.org>.
    [ http://issues.apache.org/jira/browse/GERONIMO-786?page=comments#action_12316306 ] 

Aaron Mulder commented on GERONIMO-786:
---------------------------------------

Now you get something like:

  Listening on Ports:
    1099 0.0.0.0   RMI Naming
    1527 127.0.0.1 Derby Connector
    4201 127.0.0.1 OpenEJB Connector EJB
    8443 0.0.0.0   Jetty Connector HTTPS
   61616 0.0.0.0   ActiveMQ Message Broker Connector
  WARNING: Some GBeans were not started successfully:
    JettyWebConnector (failed,port=8080)
Geronimo Application Server started (version 1.0-SNAPSHOT)


> list of unstarted gbeans is no longer printed on console after server startup
> -----------------------------------------------------------------------------
>
>          Key: GERONIMO-786
>          URL: http://issues.apache.org/jira/browse/GERONIMO-786
>      Project: Geronimo
>         Type: Bug
>     Versions: 1.0-M5
>     Reporter: David Jencks
>     Assignee: Aaron Mulder
>      Fix For: 1.0-M5

>
> IMO the console should continue to print the list of gbeans that are not started at the end of server startup.  This is a valuable notice that something is wrong.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira