(.Net) NLog logging function

 

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);

the catch (Exception EX)
{
// throws an exception, the abnormality information is given
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>

Guess you like

Origin www.cnblogs.com/jx270/p/11449233.html