Skip to content
  1. Oct 15, 2015
  2. Jun 09, 2015
  3. Jun 08, 2015
  4. Jun 02, 2015
  5. Apr 23, 2015
  6. Apr 15, 2015
  7. Apr 14, 2015
  8. Apr 13, 2015
  9. Apr 09, 2015
  10. Apr 08, 2015
  11. Apr 06, 2015
  12. Apr 02, 2015
  13. Mar 26, 2015
  14. Mar 25, 2015
  15. Mar 24, 2015
  16. Mar 18, 2015
    • s4nk's avatar
      Fixed a bug in TimeBasedFileNamingAndTriggeringPolicyBase causing the policy... · 077e45c8
      s4nk authored
      Fixed a bug in TimeBasedFileNamingAndTriggeringPolicyBase causing the policy to always rollover according to the local system time and ignore the time zone passed in the file name pattern. LOGBACK-611 introduced the possibility to specify time zone in the file name pattern and the file names are now correctly created according to the specified time zone. However, rollover is still based on the old behaviour, e.g., if the pattern is set to /wombat/foo.{%d, UTC}, rollover will happen at midnight of the local system time, instead of midnight in UTC. If for example the log is created at 00:59+01:00 02/01/2015 (local system time), the rollover will happen at 00:00+01:00 03/01/2015 instead of 01:00+01:00 02/01/2015 (i.e., 00:00Z 02/01/2015).
      077e45c8
  17. Mar 07, 2015
    • Tony Trinh's avatar
      Add XML support to en/disable stacktrace package detail · 7c538436
      Tony Trinh authored
      Changed the default enable status of packaging info in stacktraces
      to be disabled to avoid the expensive lookup unless requested.
      
      Added an XML attribute "packageTrace" to <configuration> in order to
      allow enabling or disabling the packaging info in stacktraces. When
      the attribute is omitted, the default setting is assumed (disabled).
      
      To enable package detail in logback.xml:
      
        <configuration packageTrace="true">
          ...
        </configuration>
      
      LOGBACK-730
      LOGBACK-966
      7c538436