使用NLog v4.6.8。
正在通过以下代码对其进行配置:
public class Logger
{
public static void ConfigureLogger()
{
var config = new NLog.Config.LoggingConfiguration();
// target where to log to
string logFileName = @"\log.txt";
string path = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
var logfile = new NLog.Targets.FileTarget("logfile") { FileName = path + logFileName, KeepFileOpen = true, OpenFileCacheTimeout = 5 };
// delete the log file, if it exists.
string fullFilePath = path + logFileName;
if (File.Exists(fullFilePath))
{
File.Delete(fullFilePath);
}
// rules for mapping loggers to targets
// minimum and maximum log levels for logging targets
config.AddRule(NLog.LogLevel.Info, NLog.LogLevel.Fatal, logfile);
// apply config
NLog.LogManager.Configuration = config;
}
// create an instance of the logger for each class
public static NLog.Logger getLogger()
{
return NLog.LogManager.GetCurrentClassLogger();
}
// Flush and close down internal threads and timers.
public static void flushLogger()
{
NLog.LogManager.Shutdown();
}
}
典型用法如下:
Logger.Info("Doing something");
程序集的目录中没有日志文件。为什么会这样?
发现的一些故障排除建议表明,造成这种情况的一个常见原因是NLog的配置文件没有被复制到输出目录中。但是,项目或解决方案中没有配置文件。只有对所需DLL的引用。
发布于 2020-07-22 23:00:06
乍一看,您的代码看起来是有效的。当然,一定要先调用Logger.ConfigureLogger
。
我认为这是写权限错误。您可以尝试将其写入临时文件夹。此外,还可以启用内部日志(从代码中)。
// In case of a console application:
NLog.Common.InternalLogger.LogToConsole = true;
// otherwise to file: recommended to use the temp dir
NLog.Common.InternalLogger.LogFile = "c:\\temp\\log-internal.txt";
// Also needed. Try info level or otherwise debug and trace to get more details
NLog.Common.InternalLogger.LogLevel = LogLevel.Info;
要明确的是,不需要XML配置--这是可选的
https://stackoverflow.com/questions/63047143
复制相似问题