Problem with Java CLASSPATH

Hallo

I get this error and dont know how to set the correct CLASSPATH

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details

thx
Axel

Thanks for reporting it.. it

Thanks for reporting it.. it was an oversight in our maven configurations. ehcache now uses the slf library, which requires an impl jar depending on how you want to do your logging. Since we use log4j, we will add the following to the core/pom.xml in Jradius.

    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-log4j12</artifactId>
      <version>1.5.8</version>
    </dependency>
    <dependency>
     <groupId>log4j</groupId>
     <artifactId>log4j</artifactId>
     <version>1.2.14</version>
    </dependency>

Or download this jar into your lib directory: http://repository.jboss.com/maven2/org/slf4j/slf4j-log4j12/1.5.8/slf4j-log4j12-1.5.8.jar and http://repository.jboss.com/maven2/log4j/log4j/1.2.14/log4j-1.2.14.jar

Hi thx for fast replyNow i

Hi thx for fast reply

Now i have this Problem

After i copy the 2 .jar files in lib directory .

GK126:/home/coova/jradius# sh start.sh
2010-02-10 17:29:57,543 ERROR [net.jradius.log.Log4JRadiusLogger] - No command found for null

thx