NLog不是从引用的dll写入

时间:2015-05-14 18:25:04

标签: c# logging dll nlog

我创建了一个用于发送电子邮件的DLL。我在该项目中包含NLog,记录到c:\ logs {logfilename.log}< - 这是一个错误或事件日志。 在本地使用项目时,它可以很好地工作并在测试期间写入文件。 当我从另一个也有NLog的项目引用电子邮件dll时,它不会输出到日志文件。来自电子邮件dll的配置位于引用它的新项目的bin目录中。我可以使用跟踪从新项目创建日志,但它没有打印电子邮件DLL条目。在我的新项目中,我需要做些什么特别的事情才能让电子邮件dll写日志?我已经搜索了这个问题的答案,但关键字并没有产生我需要的结果。我是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 xsi:type="File"
        name="default"
        layout="${longdate} - ${level:uppercase=true}: ${message}${onexception:${newline}EXCEPTION\: ${exception:format=ToString}}"
        fileName="C:\logs\default.log"
        keepFileOpen="false"
        archiveFileName="C:\logs\NTC_Utility\default.{##}.log"
        archiveNumbering="Sequence"
        archiveEvery="Day"
        maxArchiveFiles="30"
        />
<target xsi:type="File"
    name="error"
    layout="${longdate} - ${level:uppercase=true}: ${message}${onexception:${newline}EXCEPTION\: ${exception:format=ToString}}"
    fileName="C:\logs\error.log"
    keepFileOpen="false"
    archiveFileName="C:\logs\NTC_Utility\error.{##}.log"
    archiveNumbering="Sequence"
    archiveEvery="Day"
    maxArchiveFiles="90"
        />

<target xsi:type="File"
        name="emailLog"
        layout="-------------------- ${message} (${longdate}) --------------------${newline}
From: ${event-context:item=From}${newline}
To: ${event-context:item=To}${newline}
BCC: ${event-context:item=Bcc}${newline}
CC: ${event-context:item=CC}${newline}
Subject: ${event-context:item=Subject}${newline}
Body: ${event-context:item=Body}${newline}
Attachments: ${event-  context:item=Attachments}${newline}--------------------------------------------------------------------${newline}"
        fileName="C:\logs\EmailLog.log"
        keepFileOpen="false"
        archiveFileName="C:\logs\NTC_Utility\EmailLog_.{##}.log"
        archiveNumbering="Sequence"
        archiveEvery="Day"
        maxArchiveFiles="90"
        />

</targets>

<rules>
<logger name="*" writeTo="error" level="Error" final="true" />
<logger name="*" writeTo="emailLog" level="Info" final="true" />
<logger name="*" writeTo="default" minLevel="Debug" />
</rules>
</nlog>

这是我编译的实用程序dll中的Log.cs

using NLog;
namespace NTC.Utility
{
    internal static class Log
    {
        public static Logger Instance { get; private set;}
        static Log()
        {
            LogManager.ReconfigExistingLoggers();
            Instance = LogManager.GetCurrentClassLogger();
        }
    }
}

此行在发送电子邮件后调用我的记录方法。

LogEmailSent(imperEmail);

哪种方法称之为...

    private void LogEmailSent(EmailMessage email)
    {            
        Logger logger = LogManager.GetCurrentClassLogger();
        LogEventInfo thisEvent = new LogEventInfo(LogLevel.Info, "default","Email Sent");
        thisEvent.Properties["From"] = email.From;
        thisEvent.Properties["To"] = EmailCollectionToCsv(email.ToRecipients);            
        thisEvent.Properties["Bcc"] = EmailCollectionToCsv(email.BccRecipients);
        thisEvent.Properties["CC"] = EmailCollectionToCsv(email.CcRecipients);
        thisEvent.Properties["Subject"] = email.Subject;
        thisEvent.Properties["Body"] = email.Body;
        thisEvent.Properties["Attachments"] = AttachmentCollectionToCsv(email.Attachments);
        logger.Log(thisEvent);

    }

2 个答案:

答案 0 :(得分:0)

检查你的nlog.config 如果不。在代码中注入了一些配置吗?

http://www.codeproject.com/Articles/10631/Introduction-to-NLog

答案 1 :(得分:0)

好的,所以我终于弄清楚在记录跟踪后发生了什么......我注意到它只显示了加载的错误规则....所以我将“emaillog”规则移到了“错误”之上规则,一切都很完美。