I haven't tried the product yet but I'll give feedback anyway :-)
Is it possible to create a seperate log object for the auto-generated
log statements? For example suppose I have a normal log object:
private readonly static ILog log =
LogManager.GetLogger(typeof(Class1));
It would be nice if the program could create a second log object so I
could route the injected log messages:
private readonly static ILog log =
LogManager.GetLogger(typeof(Class1));
private readonly static ILog injectLog =
LogManager.GetLogger("inject." + typeof(Class1).FullName);
Where "inject" is a prefix I can name myself. The entry, exit, etc.
messages would be written to the injectLog object.
Can I set the level of generated messages? From the screenshots it
looks like everything is generated with Debug. Is it possible to set
the level on a per logger (i.e. namespace) level?
Are there any plans to make an English version of the website?
--- "Wiedemann, Bernd" <[EMAIL PROTECTED]> wrote:
> Hi Richard,
>
>
>
> if you are interested in a viewer implemented with .net framework,
> consider
>
> XTrace Viewer (www.xtrace.de).
>
>
>
> There you'll find a tracing tool suite - based on log4net and its
> logging
>
> derivates, which comprises a viewer, a configuration editor, a
> mechanism for
>
> generating tracing code and an API for rendering types.
>
>
>
> Although the website is in german, the tool suite itself is
> completely in
> english.
>
>
>
> Best regards,
>
>
>
> Bernd