NLogを稼働させる運がない。 tutorialを介して作業していますが、私はそこに見られるように正確なコードを持っています。NLogを動作させることができません
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NLog;
namespace NLog2
{
class Program
{
static void Main(string[] args)
{
var c = new MyClass();
c.MyMethod1();
}
}
public class MyClass
{
private static Logger logger = LogManager.GetCurrentClassLogger();
public void MyMethod1()
{
logger.Trace("Sample trace message");
logger.Debug("Sample debug message");
logger.Info("Sample informational message");
logger.Warn("Sample warning message");
logger.Error("Sample error message");
logger.Fatal("Sample fatal error message");
// alternatively you can call the Log() method
// and pass log level as the parameter.
logger.Log(LogLevel.Info, "Sample fatal error 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">
<targets>
<target name="logfile" xsi:type="File" fileName="file.txt" />
</targets>
<rules>
<logger name="*" minlevel="Info" writeTo="logfile" />
</rules>
</nlog>
私は何も出力を取得していません。誰か問題がここにあるのを見ることができますか?
'' nlog'要素に 'throwExceptions =" true "'と 'internalLogFile =" nlog.txt "internalLogLevel =" Trace "を設定してください。出力ディレクトリにコピーしてください。内部ログファイルに何かが表示されるかもしれません... binディレクトリの 'NLog.config'ですか? – nemesv