nlog
Solución de problemas de NLog
Buscar..
Habilitar el registrador interno en nlog.config
En caso de problemas, habilitar el registrador interno.
<nlog internalLogFile="c:\log.txt" internalLogLevel="Trace">
<targets>
<!-- target configuration here -->
</targets>
<rules>
<!-- log routing rules -->
</rules>
</nlog>
Habilitar el registrador interno programáticamente
En caso de problemas, habilitar el registrador interno.
Ejemplo de C #:
// set internal log level
InternalLogger.LogLevel = LogLevel.Trace;
// enable one of the targets: file, console, logwriter:
// enable internal logging to a file (absolute or relative path. Don't use layout renderers)
InternalLogger.LogFile = "c:\\log.txt";
// enable internal logging to the console
InternalLogger.LogToConsole = true;
// enable internal logging to the console (error stream)
InternalLogger.LogToConsoleError = true
// enable internal logging to the Trace
InternalLogger.LogToTrace = true
// enable internal logging to a custom TextWriter
InternalLogger.LogWriter = new StringWriter(); //e.g. TextWriter writer = File.CreateText("C:\\perl.txt")
Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow