我在Azure中创建了一个WebJob。我使用了Nlog并将日志文件指向WebJob的exe文件的“基本目录”。创建Web作业并且它成功运行,没有任何错误。此外,Nlog正在我的本地系统中创建日志文件。但在azure中,我无法找到日志文件。我进入了“app_data \ jobs \ triggered”文件夹,找到了我创建的作业。但是没有创建日志文件。我能够在azure中编写和查看控制台日志。
修改
Program.cs的
using NLog;
using System;
namespace FacilitationPortal.WebJob {
class Program
{
static Logger logger = LogManager.GetCurrentClassLogger();
static void Main(string[] args)
{
string nlogServicePath = AppDomain.CurrentDomain.BaseDirectory + "NLog-WebSchedulerService.config";
NLog.LogManager.Configuration = new NLog.Config.XmlLoggingConfiguration(nlogServicePath, true);
logger.Debug("Initializing the Web Scheduler Service");
Console.WriteLine("Initializing the Web Scheduler Service");
StartServices();
}
private static void StartServices()
{
logger.Debug("INSIDE - START SERVICES");
}
}
}
NLog-WebSchedulerService.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">
<targets >
<target xsi:type="File" name="logfile"
fileName="${basedir}/logs/WebScheduler.log"
layout="${longdate} ${level:uppercase=true:padding=5} ${gdc:item=hostname} ${gdc:item=useremail} (${logger} - ${mdc:item=actionname}) ${message} ${exception:format=tostring}"
archiveEvery="Day"
archiveFileName ="${basedir}/logs/WebScheduler.${date:format=yyyy-MM-dd HH.mm}.{#}.zip"
archiveNumbering ="Sequence"
maxArchiveFiles="30"
fileAttributes="Compressed"
enableArchiveFileCompression = "true">
</target>
</targets>
<rules>
<logger name="*" minlevel="Debug" writeTo="logfile">
</logger>
</rules>
</nlog>
Console.WriteLine()正在azure控制台中打印日志。但是logger.Debug()没有在exe所在的位置创建日志文件。如果我在本地系统中运行相同的应用程序,则会创建日志文件。
由于
答案 0 :(得分:1)