Public Shared Sub Log(ByVal strLogMessage As String)
Try
Dim strWr As StreamWriter = File.AppendText(Environment.CurrentDirectory & "\Logs\" & Date.Now.ToString("MM-dd-yyyy") & ".log")
strWr.WriteLine(DateTime.Now.ToString & " " & strLogMessage)
strWr.Close()
Catch ex As Exception
End Try
End Sub
Basic Datewise Log feature in .NET
Tags:
.Net
Here is the simple log method which logs in file. It will creates log file per day.
Related Posts :
.Net
- How to deploy Office Shared Add-in
- unable to create specified activex control Office add-in error
- Get Custom Document Properties / Document Information Panel Values using C#
- Managing custom task panes across multiple documents in shared add in for office 2007 using .NET
- Database Installation using VS setup
- Display Hierarchical Data with TreeView in ASP.NET
- Search Engine style paging in asp.net(C#)
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment