如何为LogFile添加编号?

时间:2013-09-13 15:11:59

标签: c#-4.0 logfiles

我在logtext.txt文件中保存日志消息。我想在此文件中为日志消息编号,是否有任何解决方案可以解决这个问题? 以下是我的代码:

// Create a writer and open the file:
StreamWriter log;

if (!File.Exists(AssetXMLLogMessagesPath + ".txt"))
{
    log = new StreamWriter( AssetXMLLogMessagesPath + ".txt", true);
}
else
{
    log = File.AppendText(AssetXMLLogMessagesPath + ".txt");
}                

// Write to the file:
log.WriteLine(" "+"<------------------------------"+" AssetImporter at "+":" +" "+ DateTime.Now.ToString("F") + "--------------------------------------->");
log.WriteLine(msg);                
log.WriteLine();

// Close the stream:
log.Close();

2 个答案:

答案 0 :(得分:0)

您可以尝试这样: -

public sealed class LineCounter : PatternLayoutConverter
{       
    private static int i= 0;

    protected override void Convert(TextWriter writer, LoggingEvent loggingEvent)
    {
        LineCounter.i++;
        writer.Write(LineCounter.i.ToString());
    }
}

答案 1 :(得分:0)

您必须自己保留留言号码。所以我会创建一个负责日志记录功能的类。在那里添加一个属性LogEntries,它会在每条新的日志消息上增加。

例如:

public static class VerySimpleLogger
{
    public static string Path{ get; set; }
    public static int LogEntries { get; set; }
    public static bool WithTimeStamp { get; set; }

    public static void Log(string message)
    {
        LogEntries++;
        if(WithTimeStamp)
            message = string.Format("{0}. {1}:\t{2}{3}", LogEntries, DateTime.Now.ToShortDateString() + " " + DateTime.Now.ToShortTimeString(), message, Environment.NewLine);
        else
            message = string.Format("{0}.\t{1}{2}", LogEntries, message, Environment.NewLine);
        File.AppendAllText(Path, message);
    }
}

用法:

VerySimpleLogger.Path = @"C:\Temp\logtext.txt";
for (int i = 1; i <= 100; i++)
{
    VerySimpleLogger.Log("Log-message #" + i);
}

但请注意,如果重新启动程序,LogEntries编号将再次为零。它不会count the lines in a file。因此,对于需要为一次执行或Windows服务等长期运行的应用程序创建日志文件的工具而言,这可能是完美的。如果这是一个从多个用户使用的winforms应用程序,并且所有应该共享同一个日志文件,那么这不是一个可行的方法。