Skip to content
  1. Jun 21, 2010
  2. Jun 17, 2010
  3. May 25, 2010
  4. May 12, 2010
  5. May 08, 2010
  6. Apr 01, 2010
  7. Mar 29, 2010
  8. Mar 24, 2010
  9. Mar 23, 2010
  10. Mar 18, 2010
  11. Mar 03, 2010
  12. Feb 18, 2010
  13. Feb 11, 2010
  14. Feb 01, 2010
  15. Jan 28, 2010
  16. Jan 26, 2010
  17. Dec 04, 2009
  18. Dec 03, 2009
  19. Dec 02, 2009
  20. Sep 19, 2009
  21. Aug 20, 2009
  22. Aug 11, 2009
  23. Aug 09, 2009
  24. Jul 30, 2009
  25. Jul 23, 2009
  26. Jul 15, 2009
  27. Feb 26, 2009
    • Ceki Gulcu's avatar
      · 01112c2c
      Ceki Gulcu authored
       SDOAware interface has been removed.
       ILoggerEvent interface no longer extends SDOAware.
       
       Appenders which rely on serialization invoke the appropriate PreSerializationTransformer
       to obtain a serializable representation of the event they are processing. 
      01112c2c
  28. Feb 25, 2009
    • Ceki Gulcu's avatar
      · 45a9231c
      Ceki Gulcu authored
      This fairly extensive commit in terms of the number of affected
      classes but relatively small conceptually. It is a refactoring of the
      LoggingEvent class. The LoggingEvent class now implements the
      ILoggingEvent interface which essentially contains getter methods with
      no setters.  LoggingEvent is no longer serializable because the
      relavant serialization code has been moved into LoggingEventSDO. A
      LoggingEvent object now requires transformation into LoggingEventSDO
      object before serializaiton. LoggingEventSDO class implements the
      ILoggingEvent interface. SDO stands for Serialable Data Object.
      
      All logback-classic components, including appenders, layouts,
      converters now operate on ILoggingEvent instances. In other words,
      logback-classic module is now a specialized processing chain for
      ILoggingEvent objects, instead of LoggerEvent objects previously.
      
      The getStartTime method which was previously part of LoggingEvent has
      migrated to the Context interface. This change is a nice fit from a
      conceptual point of view.
      
      All tests pass. Performance is has not been degraded. 
      
      In the future commits, the LoggerRemoteView may be renamed as
      LoggerSDO, and similarly, LoggerContextRemoteView as LoggerContextSDO.
      45a9231c
  29. Feb 16, 2009