Jeśli chcesz mieć własne, niestandardowe rejestrowanie błędów, możesz łatwo napisać własny kod. Dam ci fragment jednego z moich projektów.
public void SaveLogFile(object method, Exception exception)
{
string location = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + @"\FolderName\";
try
{
using (StreamWriter sw = new StreamWriter(new FileStream(location + @"log.txt", FileMode.Append, FileAccess.Write, FileShare.ReadWrite)))
{
sw.WriteLine(String.Format("{0} ({1}) - Method: {2}", DateTime.Now.ToShortDateString(), DateTime.Now.ToShortTimeString(), method.ToString()));
sw.WriteLine(exception.ToString()); sw.WriteLine("");
}
}
catch (IOException)
{
if (!File.Exists(location + @"log.txt"))
{
File.Create(location + @"log.txt");
}
}
}
Następnie, aby faktycznie zapisać w dzienniku błędów, po prostu napisz ( q
będąc złapanym wyjątkiem)
SaveLogFile(MethodBase.GetCurrentMethod(), `q`);