I am saving log messages in my logtext.txt file.I want to give numbering for log messages in this file, Is there any solution to acieve this? Below is my code:
// 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();
You may try like this:-