Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
You can use the My.Application.Log
and My.Log
objects to log information about your application. This example shows how to use the My.Application.Log.WriteEntry
method to log tracing information.
For logging exception information, use the My.Application.Log.WriteException
method; see How to: Log Exceptions.
Example
This example uses the My.Application.Log.WriteEntry
method to write out the trace information.
Public Sub TracingTest(ByVal fileName As String)
My.Application.Log.WriteEntry(
"Entering TracingTest with argument " &
fileName & ".")
' Code to trace goes here.
My.Application.Log.WriteEntry(
"Exiting TracingTest with argument " &
fileName & ".")
End Sub
.NET Framework Security
Make sure the data you write to the log does not include sensitive information such as user passwords. For more information, see Working with Application Logs.