Hi Alexandre,

This configuration file should not work very well.

<logger name="org.accma.concentrator.services.bitran.BiTranService">
  <level value="debug" />
  <appender-ref ref="bitranlog" />
</logger>

Here, you declare an appender-ref element that links to a non-existent appender.

Also, since your named logger have pretty specific names, there is a good chance that you might not call them at all in your code.

Please refer to my last email with the joined configuration file, it should set you up with a ConsoleAppender and a RollingFileAppender that logs in the tomcat log directory.

Hope this helps...

Sébastien

Alexandre Jaquet wrote:
Here we are,

A working sample

<configuration debug="true">

   <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
     <layout class="ch.qos.logback.classic.PatternLayout">
       <Pattern>%-4relative [%thread] %-5level %class - %msg%n</Pattern>
     </layout>
   </appender>

   <logger name="org.accma.concentrator.services.bitran.BiTranService">
     <level value="debug" />
     <appender-ref ref="bitranlog" />
   </logger>

   <appender name="FILE"
class="ch.qos.logback.core.rolling.RollingFileAppender">
     <File>c:\test_perf.log</File>
     <rollingPolicy
class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
       <FileNamePattern>soccs_%d{yyyy-MM}.log.gz</FileNamePattern>
     </rollingPolicy>

     <layout class="ch.qos.logback.classic.PatternLayout">
       <Pattern>%-4relative [%thread] %-5level %class - %msg%n</Pattern>
     </layout>
   </appender>

   <logger name="org.accma.concentrator.services.soccs.SOCCSService">
     <level value="debug" />
     <appender-ref ref="FILE" />
   </logger>

   <root>
     <level value="debug" />
     <appender-ref ref="STDOUT" />
     <appender-ref ref="FILE" />
   </root>

</configuration>


Alexandre Jaquet wrote:
By doing the solution explain here

http://www.nabble.com/Why-am-I-only-seeing-one-log-generated--tf3024278.html

the file is created but nothing was written into the file :/

still doing some search.



Alexandre Jaquet wrote:
Hi,

I'm new to logback and I'm trying to setting up a test project, who will use it. When I used log4j I simply added a file log4.properties on my src root and define some paramaters. My question is
how to do the same, and wich paramaters I've to set.

Thanks for your support.

Regards.

Alexandre Jaquet
_______________________________________________
Logback-user mailing list
[email protected]
http://qos.ch/mailman/listinfo/logback-user





--
Sébastien Pennec
[EMAIL PROTECTED]

Logback: The reliable, generic, fast and flexible logging framework for Java.
http://logback.qos.ch/
_______________________________________________
Logback-user mailing list
[email protected]
http://qos.ch/mailman/listinfo/logback-user

Reply via email to