I am not able to get the logs on my server. The Application server I
am using to run my GWT Application is WebSphere server v7.0. I am just
able to get the logs on Development mode window of eclipse but rest of
the handlers are not working. Below are the configurations i am using
in my application :

    # In my .gwt.xml file
    <inherits name="com.google.gwt.logging.Logging"/>

    <set-property name="gwt.logging.enabled" value="TRUE"/>
    <set-property name="gwt.logging.logLevel" value="ALL" />
    <set-property name="gwt.logging.systemHandler" value="ENABLED" />
    <set-property name="gwt.logging.popupHandler" value="DISABLED"/>
    <set-property name="gwt.logging.consoleHandler" value="ENABLED" /
>
    <set-property name="gwt.logging.developmentModeHandler"
value="ENABLED" />
    <set-property name="gwt.logging.simpleRemoteHandler"
value="ENABLED" />

    # In .java file
    Logger logger = Logger.getLogger("NameOfLogger");
    logger.log(Level.SEVERE, "this message should get logged");


Please suggest me some solution.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to