https://codeload.github.com/NLog/NLog/zip/v4.6.6

https://nlog-project.org/?r=redirect

 

Logger logger = LogManager.GetCurrentClassLogger();

logger.Info("Move Return Receive Json :" + request);

catch (Exception ex)
{
//抛出异常,给出异常信息
db.RollbackTrans();
UpdateExceptionReqData(requestObj, retryCnt, ex.Message.ToString()); // update request error
responseObj.Message = ex.Message;
responseObj.Status = "1";
logger.Error(ex.Message);
}

 

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" autoReload="true">

<!-- 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="file" xsi:type="File" fileName="d://Logs/WebApi/${shortdate}/${aspnetmvc-controller}/WebApi_${shortdate}_${aspnetmvc-controller}.txt" />
<extensions>
<add assembly="NLog.Extended"/>
</extensions>
</targets>
<rules>
<logger name="*" minlevel="Debug" writeTo="file" />
</rules>
</nlog>

相关文章:

  • 2022-01-01
  • 2022-12-23
  • 2021-09-30
  • 2020-05-20
  • 2022-12-23
  • 2021-08-07
  • 2021-06-04
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-02-23
  • 2022-02-09
  • 2022-02-12
  • 2022-12-23
  • 2022-12-23
  • 2021-08-19
相关资源
相似解决方案