Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I had the same problem yesterday, but now it works for me. </p> <p>Not sure what the change was, but I will post my configuration below so you can try it out (running GAE 1.3.8, no GWT but shouldnt matter).</p> <p>Please note that the logs will appear in the console window (amongst the other server logging). I am not sure you can get it to log to files since the server is running in some kind of sandbox. I have only tested this configuration in my local environment, not uploaded.</p> <p>WEB-INF/appengine-web.xml:</p> <pre><code> &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;appengine-web-app xmlns="http://appengine.google.com/ns/1.0"&gt; &lt;!-- (omitted application,version from sample--&gt; &lt;system-properties&gt; &lt;property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/&gt; &lt;/system-properties&gt; &lt;/appengine-web-app&gt; </code></pre> <p>WEB-INF/logging.properties:</p> <pre><code> # Set the default logging level for all loggers to WARNING #.level = WARNING #.level = ALL .level = INFO </code></pre> <p>logtest.jsp:</p> <pre><code>&lt;%@ page contentType="text/html;charset=UTF-8" language="java"%&gt; &lt;%@ page import=" java.util.logging.Logger"%&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" lang="sv" xml:lang="sv"&gt; &lt;head&gt; &lt;/head&gt; &lt;% Logger logger = Logger.getLogger("org.whatever.Logtest"); logger.info("logtest info"); logger.warning("logtest warning"); logger.severe("logtest severe"); %&gt; &lt;body&gt; Check the console for logging &lt;/body&gt; &lt;/html&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload