Web App has My.Application.Log instead of My.Log - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T14:57:47Zhttp://stackoverflow.com/feeds/question/911747http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/911747/web-app-has-my-application-log-instead-of-my-log0Web App has My.Application.Log instead of My.LogNYSystemsAnalyst2009-05-26T17:06:49Z2009-10-11T10:00:03Z
<p>According to the MSDN documentation (<a href="http://msdn.microsoft.com/en-us/library/ms172987.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms172987.aspx</a>), the My.Application.Log property is used to write log entries for client applications, and the My.Log property is used to write log entries for web applications. However, I have a web application with a bunch of My.Application.Log calls in the .aspx.vb files. These compile correctly, but if I change them to My.Log, I get compile errors. Does anyone know why this would be? </p>
http://stackoverflow.com/questions/911747/web-app-has-my-application-log-instead-of-my-log/1465197#14651970Answer by Or Cohen for Web App has My.Application.Log instead of My.LogOr Cohen2009-09-23T10:32:21Z2009-09-23T10:32:21Z<p>I've got this problem too.
This seems to happen when you write to log from a library (dll)
which is a sort of windows application.</p>
<p>Do you use a Dll?</p>