This is probably simple. I want to write a text file everytime I throw an exception for a few different subroutines. In this text file I would like to record what routine threw the exception, how can I do this?
For example here is a function I want to use:
any ideas?
Thanks
-Bill
For example here is a function I want to use:
Code:
Public Shared Sub LogTxtError(ByVal ErrForm As String, ByVal ErrMessage As String, ByVal ErrStack As String, ByVal ErrSource As String)
System.IO.File.WriteAllText(My.Settings.ErrorLoggingPathSetting & DateTime.Now.ToString("yyyyMMdd") & "_" & DateTime.Now.ToString("HHmmss") & ".txt", "Error Form: " & ErrForm & ControlChars.NewLine & "Routine/Function: " & "What Do I put here?" & ControlChars.NewLine & "Error Message: " & ErrMessage & ControlChars.NewLine & "Error Source: " & ErrSource & ControlChars.NewLine & "Error Stack: " & ErrStack)
End Sub
any ideas?
Thanks
-Bill