code

NLog 항목을 vs2008 '출력'창에 어떻게 출력 할 수 있습니까?

codestyles 2020. 11. 27. 08:07
반응형

NLog 항목을 vs2008 '출력'창에 어떻게 출력 할 수 있습니까?


NLog를 사용하여 내 물건을 기록하고 있습니다. 출력을 콘솔 (또는 colouredconsole)로 보내려고합니다 .ASP.NET 웹 사이트 / 앱 / mvc 앱의 Visual Studio 'OUTPUT'창으로 이동하기를 바랍니다.

그렇지 않습니다. 대상을 '파일'로 변경하면 확실히 작동합니다.

웹 앱의 '출력'창에 NLog를 출력 할 수 있습니까?


이 구성 파일 (앱 경로의 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">

  <targets>
        <target name="debugger" xsi:type="Debugger" layout="${logger}::${message}"/>
  </targets>

  <rules>
    <logger name="*" minlevel="Trace" writeTo="debugger" />
  </rules>
</nlog>

-스콧

참고 URL : https://stackoverflow.com/questions/252464/how-can-i-output-nlog-stuff-to-the-vs2008-output-window

반응형