This is only tangentially related to wicket but I'm trying to get SLF4J set
up for my wicket project using the Simplelog, rather than log4j.  Has anyone
else done this successfully?  So far, I've done the following:

In pom.xml, I have the following:
  <dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-api</artifactId>
    <version>1.4.3</version>
    <type>jar</type>
</dependency>
<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-simple</artifactId>
    <version>1.4.3</version>
    <type>jar</type>
</dependency>

I am also using the jetty plugin, ala:
<plugins>
  <plugin>
    <groupId>org.mortbay.jetty</groupId>
    <artifactId>maven-jetty-plugin</artifactId>
  </plugin>
  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
      <source>1.6</source>
      <target>1.6</target>
    </configuration>
  </plugin>
</plugins>

I have a simplelog.properties file in /classes, with the following content:
simplelog.logFile = output.log

I get no error messages, but the log file is never created, and it appears
all logging is going straight to the console.  

Anyone see what I'm missing?  If so, thanks in advance!

-- 
View this message in context: 
http://www.nabble.com/SLF4J-Usage-tf4653167.html#a13294464
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to