Log4Net适用于VisualStudio Debug/Release,但在部署后则不然



为了制作更复杂的日志,我决定将Log4Net用于我的WPF桌面应用程序。它运行完美,在"输出"中创建"调试"消息并将所有日志写入文件......

但是,如果我部署/安装它(使用Visual Studio的向导创建.MSI设置(,它将停止工作。我在文件夹或计算机上与之相关的任何地方都找不到任何文件。

我正在使用Caliburn.Micro来组织我的代码。为了获得日志,我通过使用名为"Logging.cs"的公共静态类来"集中"它。

"Initialize(("中的代码现在作为一种尝试方式,但它似乎没有做任何事情。

public static class Logging
{
//Declaration of the logger
/// <summary>
/// Logger for the Logging manager.
/// </summary>
private static log4net.ILog Logger = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);

public static void Initialize()
{
log4net.Config.XmlConfigurator.Configure();
}
/// <summary>
/// Creates a log in Fatal level accompanied by an expection
/// </summary>
/// <param name="message">The message to be logged</param>
/// <param name="error">Exception thrown along with the log</param>
/// <param name="senderType">From where the log comes from</param>
public static void Fatal(string message, Exception error, Type senderType)
{
//Defines 'type' in the log.
Logger = log4net.LogManager.GetLogger(senderType);
Logger.Fatal(message, error);
}
/// <summary>
/// Creates a log in Fatal level
/// </summary>
/// <param name="message">The message to be logged</param>
/// <param name="senderType">From where the log comes from</param>
public static void Fatal(string message, Type senderType)
{
//Defines 'type' in the log.
Logger = log4net.LogManager.GetLogger(senderType);
Logger.Fatal(message);
}
/// <summary>
/// Creates a log in Error level accompanied by an expection
/// </summary>
/// <param name="message">The message to be logged</param>
/// <param name="error">Exception thrown along with the log</param>
/// <param name="senderType">From where the log comes from</param>
public static void Error(string message, Exception error, Type senderType)
{
//Defines 'type' in the log.
MessageBox.Show(error.ToString());
Logger = log4net.LogManager.GetLogger(senderType);
Logger.Error(message, error);
}
/// <summary>
/// Creates a log in Error level
/// </summary>
/// <param name="message">The message to be logged</param>
/// <param name="senderType">From where the log comes from</param>
public static void Error(string message, Type senderType)
{
//Defines 'type' in the log.
Logger = log4net.LogManager.GetLogger(senderType);
Logger.Error(message);
}
/// <summary>
/// Creates a log in Warn level accompanied by an expection
/// </summary>
/// <param name="message">The message to be logged</param>
/// <param name="error">Exception thrown along with the log</param>
/// <param name="senderType">From where the log comes from</param>
public static void Warn(string message, Exception error, Type senderType)
{
//Defines 'type' in the log.
Logger = log4net.LogManager.GetLogger(senderType);
Logger.Warn(message, error);
}
/// <summary>
/// Creates a log in Warn level
/// </summary>
/// <param name="message">The message to be logged</param>
/// <param name="senderType">From where the log comes from</param>
public static void Warn(string message, Type senderType)
{
//Defines 'type' in the log.
Logger = log4net.LogManager.GetLogger(senderType);
Logger.Warn(message);
}
/// <summary>
/// Creates a log in Info level accompanied by an expection
/// </summary>
/// <param name="message">The message to be logged</param>
/// <param name="error">Exception thrown along with the log</param>
/// <param name="senderType">From where the log comes from</param>
public static void Info(string message, Exception error, Type senderType)
{
//Defines 'type' in the log.
Logger = log4net.LogManager.GetLogger(senderType);
Logger.Info(message, error);
}
/// <summary>
/// Creates a log in Info level
/// </summary>
/// <param name="message">The message to be logged</param>
/// <param name="senderType">From where the log comes from</param>
public static void Info(string message, Type senderType)
{
//Defines 'type' in the log.
Logger = log4net.LogManager.GetLogger(senderType);
Logger.Info(message);
}
/// <summary>
/// Creates a log in Debug level accompanied by an expection
/// </summary>
/// <param name="message">The message to be logged</param>
/// <param name="error">Exception thrown along with the log</param>
/// <param name="senderType">From where the log comes from</param>
public static void Debug(string message, Exception error, Type senderType)
{
//Defines 'type' in the log.
Logger = log4net.LogManager.GetLogger(senderType);
Logger.Debug(message, error);
}
/// <summary>
/// Creates a log in Debug level
/// </summary>
/// <param name="message">The message to be logged</param>
/// <param name="senderType">From where the log comes from</param>
public static void Debug(string message, Type senderType)
{
//Defines 'type' in the log.
Logger = log4net.LogManager.GetLogger(senderType);
Logger.Debug(message);
}
/// <summary>
/// Log created in Debug level containing not only a log message but also an object to be serialized and logged.
/// </summary>
/// <param name="message">The message to be logged (should be description of object)</param>
/// <param name="obj">Object to be displayed</param>
/// <param name="senderType">From where the log comes from</param>
public static void ShowObject(string message, object obj, Type senderType)
{
//Defines 'type' in the log.
Logger = log4net.LogManager.GetLogger(senderType);
Logger.Debug(message + "n<object>" + JsonConvert.SerializeObject(obj) + "</object>n");
}
}

另外,这是我的log4net配置文件:

<log4net>
<root>
<level value="ALL" />
<appender-ref ref="console" />
<appender-ref ref="file" />
</root>
<appender name="console" type="log4net.Appender.ColoredConsoleAppender">
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date %level %logger - [%message] // %exception%newline" />
</layout>
</appender>
<appender name="file" type="log4net.Appender.RollingFileAppender">
<file type="log4net.Util.PatternString" value="DesktopApp.log" />
<appendToFile value="true" />
<rollingStyle value="Size" />
<maxSizeRollBackups value="5" />
<maximumFileSize value="10MB" />
<staticLogFileName value="true" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %level %logger - [%message] // %exception%newline" />
</layout>
</appender>
<appender name="FileAppender" type="log4net.Appender.FileAppender">
<file value="log-file.txt" />
<appendToFile value="true" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %-5level %logger [%property{NDC}] - %message%newline" />
</layout>
</appender>
</log4net>

在AssemblyInfo.cs,我只是在最后插入了这个:

[assembly: log4net.Config.XmlConfigurator(Watch = true,ConfigFile ="log4net.config")]

感谢您抽出宝贵时间,如果我能添加更多详细信息,请发表评论。

PS:该软件安装在AppData内部,因此不会出现文件权限问题,因为我正在使用另一个框架来自动更新应用程序。

P.S.2:我使用了DebugView,在大部分看似随机的信息中间,我发现了一个错误:

[5480] log4net:ERROR Failed to find configuration section 'log4net' in the application's .config file. Check your .config file for the <log4net> and <configSections> elements. The configuration section should look like: <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" /> 

仍然没有尝试修复它,只是让这个问题保持最新。(谢谢瓦伦!

我发现了这个问题。我一直在看错地方。当我检查安装文件夹时,我注意到没有log4net.config!...这就是为什么它在调试期间运行良好(因为配置在那里(但在部署后却不行!

很抱歉打扰,谢谢你的帮助。

最新更新