-
1. Re: Capedwarf WildFly cannot log to the console
alesj May 27, 2014 5:02 PM (in response to alfred8812)Do you have the needed logging.properties file and its reference in appengine-web.xml, as per GAE docs?
* https://developers.google.com/appengine/docs/java/#Java_Logging
-
2. Re: Capedwarf WildFly cannot log to the console
alfred8812 May 27, 2014 8:22 PM (in response to alesj)Yes. My logging.properties file has
# A default java.util.logging configuration.
# (All App Engine logging is through java.util.logging by default).
#
# To use this configuration, copy it into your application's WEB-INF
# folder and add the following to your appengine-web.xml:
#
# <system-properties>
# <property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
# </system-properties>
#
# Set the default logging level for all loggers to WARNING
.level = INFO
And appengine-web.xml also has
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
-
3. Re: Capedwarf WildFly cannot log to the console
alesj May 28, 2014 4:07 PM (in response to alfred8812)It looks like -- even with all the tests that we have -- this did somehow slip through.
We're looking into the issue, and should be resolved in the next release.
-
4. Re: Capedwarf WildFly cannot log to the console
alesj May 29, 2014 6:20 AM (in response to alesj)Found the bug:
* https://github.com/capedwarf/capedwarf-blue/pull/245/files
(perhaps build the admin console on your own and replace the jar in CR2?)
-
5. Re: Capedwarf WildFly cannot log to the console
alfred8812 May 29, 2014 6:20 PM (in response to alesj)Thanks. I'll try that.