You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
318 B

Imports System.Diagnostics
Public MustInherit Class Tracer
Inherits TraceListener
Public Sub New()
End Sub
Public Overloads Sub WriteLine(ByVal message As String, ByVal category As String)
End Sub
Public Overloads Shared Sub Write(ByVal message As String, ByVal category As String)
End Sub
End Class