Enterprise Library 4: logging block flat file - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T16:35:18Zhttp://stackoverflow.com/feeds/question/288496http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/288496/enterprise-library-4-logging-block-flat-file0Enterprise Library 4: logging block flat fileJack2008-11-13T21:59:07Z2009-06-02T01:00:03Z
<p>I am having problem creating log entry to a text file. Here is my logging configuration in my ASP.net app.</p>
<p>
</p>
<p>and here is my vb.net code</p>
<p>Try
db.ExecuteNonQuery(cmd, tr)
tr.Commit()
result = True
Catch ex As Exception
Dim entry As New LogEntry()
entry.EventId = 11
entry.Message = ex.Message
entry.Categories.Add("General")
Logger.Write(entry)</p>
<pre><code> tr.Rollback()
End Try
</code></pre>
<p>All the tutorial and example that i found so far are based on older version of Enterprise Library. I'm using Enterprise Library 4. Does anyone know what i'm doing wrong? Is it my code or the configuration? Where can i find more tutorial on Enterprise Library version 4. I tried to follow the quick start that it come with but i can't make head or tail.</p>
http://stackoverflow.com/questions/288496/enterprise-library-4-logging-block-flat-file/482532#4825321Answer by Neil Naidoo for Enterprise Library 4: logging block flat fileNeil Naidoo2009-01-27T07:13:57Z2009-01-27T07:13:57Z<p>its a basic tutorial on using enterprise library 4.1</p>
<p><a href="http://blog.accentient.com/EnterpriseLibraryLogging101.aspx" rel="nofollow">http://blog.accentient.com/EnterpriseLibraryLogging101.aspx</a></p>
<p>btw, to get mine to work, i had to change all the PublicKeyToken's to = null
otherwise the web.config didnt validate, gl</p>