NLog ничего не регистрирует - PullRequest
0 голосов
/ 28 ноября 2018

Nlog ничего не протоколирует, хотя в моем проекте есть следующие файлы:

enter image description here

NLog.config выглядит так:

<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

  <!-- make sure to set 'Copy To Output Directory' option for this file -->
  <!-- go to http://nlog-project.org/wiki/Configuration_file for more information -->

  <targets>
    <target name="logfile" xsi:type="File"
            fileName="${basedir}/log/${shortdate}.log" />
  </targets>

  <rules>
    <!--
    Trace
    Debug
    Info
    Warn
    Error
    Fatal
    -->
    <logger name="*" minlevel="Debug" writeTo="logfile" />
  </rules>
</nlog>

Следующий код должен вызывать сообщение в протоколе Debugmodus, но он ничего не делает.Я всегда получаю сообщение из Messagebox!Зачем?Конечно, я запускаю приложение в режиме отладки (любой процессор), а не в режиме выпуска

LogLevel level = LogLevel.Debug;
Logger _logger = LogManager.GetCurrentClassLogger();
_logger.IsEnabled(level);
if(!_logger.IsDebugEnabled && !_logger.IsErrorEnabled && !_logger.IsInfoEnabled) {
MessageBox.Show("Protocolation not activated!" + Environment.NewLine + "Abbruch");
}else
_logger.Debug("Protocol item has been written into logfile!");

Повторное редактирование: это app.config выглядит так:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="NLog" publicKeyToken="5120e14c03d0593c" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>

1 Ответ

0 голосов
/ 28 ноября 2018

Исправлена ​​проблема, но появилась еще одна с Nlog.config.Следующий файл NLog.config будет регистрировать все, что я хочу записать:

<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

  <!-- make sure to set 'Copy To Output Directory' option for this file -->
  <!-- go to http://nlog-project.org/wiki/Configuration_file for more information -->

  <targets>
    <target name="logfile" xsi:type="File"
            fileName="C:/Users/tklustig/Documents/Visual Studio 2017/Projects/C#/C#_GUI/Vokabelprogramm.git/log/${shortdate}.log" />
  </targets>

  <rules>
    <!--
    Trace
    Debug
    Info
    Warn
    Error
    Fatal
    -->
    <logger name="*" minlevel="Debug" writeTo="logfile" />
  </rules>
</nlog>

Если я определю имя файла следующим образом:

fileName="${basedir}/log/${shortdate}.log"

, то ничего не будет зарегистрировано!Почему NLog не примет $ basedir?Это недопустимый XML?

...