gpt4 book ai didi

vb.net - 如何通过 Nlog 通过电子邮件发送整个日志文件

转载 作者:行者123 更新时间:2023-12-01 15:04:41 24 4
gpt4 key购买 nike

救命恩人! nLog for .NET 能够将日志条目作为电子邮件发送。但是如果我们想发送整个当前日志文件,除了将日志文件读入字符串并将其作为 nLog {$message} 传递之外,该怎么做呢?我没有看到 nLog 在其 mailtarget 中有一个属性用于附件。如何做到这一点?

最佳答案

我今天刚用 C# 做了这个。我在这里遵循了 arkmuetz 提供的答案 How to get path of current target file using NLog in runtime?首先获取 Nlog 目标的文件名。然后我读取文件并将文件的内容复制到另一个 Nlog 目标,该目标通过电子邮件将日志发送到消息正文中。

首先我创建了一个 NlogHelper 类

public static class NlogHelper
{

/// <summary>
/// Gets LogFileName by TargetName
/// </summary>
/// <param name="targetName">The nLog targetname for the specified logger.</param>
/// <returns></returns>
/// <remarks>https://stackoverflow.com/questions/11452645/how-to-get-path-of-current-target-file-using-nlog-in-runtime</remarks>
public static string GetLogFileName(string targetName)
{
string fileName = null;

if (LogManager.Configuration != null && LogManager.Configuration.ConfiguredNamedTargets.Count != 0)
{
Target target = LogManager.Configuration.FindTargetByName(targetName);
if (target == null)
{
throw new Exception("Could not find target named: " + targetName);
}

FileTarget fileTarget = null;
WrapperTargetBase wrapperTarget = target as WrapperTargetBase;

// Unwrap the target if necessary.
if (wrapperTarget == null)
{
fileTarget = target as FileTarget;
}
else
{
fileTarget = wrapperTarget.WrappedTarget as FileTarget;
}

if (fileTarget == null)
{
throw new Exception("Could not get a FileTarget from " + target.GetType());
}

var logEventInfo = new LogEventInfo { TimeStamp = DateTime.Now };
fileName = fileTarget.FileName.Render(logEventInfo);
}
else
{
throw new Exception("LogManager contains no Configuration or there are no named targets");
}

//if (!File.Exists(fileName))
//{
// throw new Exception("File " + fileName + " does not exist");
//}

return fileName;
}
}

接下来我在构造函数中检索文件名并将其存储以备后用。

_logLileName = NlogHelper.GetLogFileName("DailyFile");

为了我的目的,我创建了一个属性,我后来用它来检索日志文件的内容。

public string LogFileContent
{
get
{
return File.ReadAllText(_logLileName);
}
}

最后,我将文件的内容添加到要通过电子邮件发送的日志中。

_logger.Error("Excel Builder LinkShare Error encountered -- Some companies did not complete succesfully!.  Please review logs. \n" + mfb.LogFileContent);

这是我的 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="console" xsi:type="ColoredConsole"
layout="${date:format=HH\:mm\:ss}|${level}|${stacktrace}|${message}" />
<target name="file" xsi:type="File" fileName="${basedir}/DomoExcelBuilderLog.txt"
layout="${stacktrace} ${message}" />
<target name="DailyFile" xsi:type="File" fileName="C:\Temp\Log${shortdate}.txt"
layout="${date:format=HH\:mm\:ss} --> ${message}" deleteOldFileOnStartup="true" />
<target name="file2" xsi:type="File" fileName="${basedir}/ServiceLog.txt"
layout="${stacktrace} ${message}" />
<target name="MyMailer" xsi:type="Mail"
smtpServer="some.server.com"
smtpPort="587"
smtpAuthentication="Basic"
smtpUsername="no-reply"
smtpPassword="somepassword"
enableSsl="true"
from="no-reply@some.server.com"
to="myemail@gmail.com"/>
</targets>
<rules>
<logger name="MultipleFileBuilder" minlevel="Trace" writeTo="DailyFile" />
<logger name="ExcelBuilderService" minlevel="Debug" writeto="MyMailer" />
</rules>
</nlog>

我的应用程序首先记录到名为“MultipleFileBuilder”的记录器。然后,我使用 NLogHelper 类检索目标“DailiyFile”的内容。

希望这对某人有所帮助。

(注意:我在“GetLogFileName”方法中删除了检查文件是否存在的检查,因为在我的例子中文件不存在。)

关于vb.net - 如何通过 Nlog 通过电子邮件发送整个日志文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8379169/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com