I noticed this page:

 http://logging.apache.org/log4net/release/manual/internals.html

doesn't talk about the new DebugFormat, InfoFormat, etc. members of
ILog. Are these two snippets identical?

 if(log.IsDebugEnabled)
 {
  log.Debug("Entry number: " + i + " is " + entry[i].ToString());
 }

 log.DebugFormat("Entry number: {0} is {1}", i, entry[i]);

What was the design decision behind adding new members to ILog rather
than overloaded existing ones? Why not just add Debug(string format,
params object[] args)?

When was the last version of log4net that wasn't a beta?

- Ron

--- Nicko Cadell <[EMAIL PROTECTED]> wrote:
> Greetings,
> 
> Log4net developers are happy to announce the release of log4net 1.2.9
> beta. This, our first release during incubation at apache, includes
> many
> enhancements and bug fixes.
> 
> The log4net website documentation has been updated to be in sync with
> this release.
> 
> The release notes are available here:
> http://logging.apache.org/log4net/release/release-notes.html
> 
> The release can be downloaded here:
> http://logging.apache.org/log4net/downloads.html
> 
> ----
> Nicko Cadell 
> log4net dev 
> 

Reply via email to