Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Probably a problem with your logging properties. I noticed that I had to use both level specifications in the config (root and console) to get the result. <br> Maybe your root logger level is below <code>FINEST</code>, e.g. <code>INFO</code> (<code>.level=INFO</code>). <br> Or not set at all, in which case I suppose it to be <code>INFO</code>. </p> <p>I ran your code with the following logging.properties: <br></p> <pre><code>handlers=java.util.logging.ConsoleHandler .level=FINEST java.util.logging.ConsoleHandler.level=FINEST </code></pre> <p>Without specifying the <code>-Djava.util.logging.config.file=/tmp/logging.properties</code> output was:</p> <pre><code>--- start 09.11.2012 14:25:49 testing.Scribble main SCHWERWIEGEND: SEVERE 1 09.11.2012 14:25:49 testing.Scribble main SCHWERWIEGEND: SEVERE 2 09.11.2012 14:25:49 testing.Scribble main SCHWERWIEGEND: SEVERE 3 09.11.2012 14:25:49 testing.Scribble main AM FEINSTEN: FINEST 3 --- end </code></pre> <p>Looks correct! (My test class is called testing.Scribble, thats the only difference)</p> <p>Using <code>-Djava.util.logging.config.file=/tmp/logging.properties</code> output is:</p> <pre><code>--- start 09.11.2012 14:31:06 testing.Scribble main SCHWERWIEGEND: SEVERE 1 09.11.2012 14:31:06 testing.Scribble main AM FEINSTEN: FINEST 1 09.11.2012 14:31:06 testing.Scribble main SCHWERWIEGEND: SEVERE 2 09.11.2012 14:31:06 testing.Scribble main AM FEINSTEN: FINEST 2 09.11.2012 14:31:06 testing.Scribble main SCHWERWIEGEND: SEVERE 3 09.11.2012 14:31:06 testing.Scribble main AM FEINSTEN: FINEST 3 --- end </code></pre> <p>Looks also correct!</p>
    singulars
    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. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. 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