0
votes
1answer
95 views

Asp.net MVC Exception logging only gets page exception

I've got a filter wrapped around exceptions in my .net MVC code. It happily logs the exception, but almost always logs a variation on the same exception. Error executing child request for handler ...
0
votes
1answer
46 views

global.asax nlog

I am trying to log the end of a web application(with nlog) and I try to do it in Global.asax Application_End(). Unfortunately the application domain is not available there anymore, and nlog fails ...
1
vote
1answer
255 views

How can I successfully configure Common.Logging?

I'm attempting to use NuGet packages to configure Common.Logging to use NLog2 in an ASP.Net MVC project. Based on the information provided at the URLs below, I believe my loggers are configured ...
0
votes
0answers
70 views

Server variable Url does not contain action when asp.net mvc routes have '.aspx'?

I ran into a strange issue while configuring logging on an ASP.Net MVC 3 application (using NLog). This application was initially deployed on IIS 6 (using MVC 2) and has a route mapping that looks ...
1
vote
0answers
156 views

ASP.NET MVC 2 + Common.Logging + NLog = Session_Start called for each request

After switching the logging library behind Common.Logging 2.1.1 from log4net to NLog 2.0 my ASP.NET MVC 2 application kept logging correctly, but it started calling the HttpApplication.Session_Start ...
1
vote
1answer
297 views

ASP.NET MVC4 + Ninject + NLog in Azure Website = Problems

Is there any way to run Ninject + NLog under an Azure Website without using the less performant Reflection based Injection? var options = new NinjectSettings() { UseReflectionBasedInjection = true }; ...
0
votes
0answers
68 views

Difference between NLog.Logger() and NLog.LogManager()

Can anyone tell me what are the differences between NLog.Logger() and NLog.LogManager() and context in which each should be preffered. I was developing an asp .net mvc3 application that makes use of ...
0
votes
2answers
218 views

Logging sql in nhibernate asp.net mvc application using nlog

Just cannot manage to make nlog log sql queries generated by nhibernate in a asp.net mvc application. Is there any example opensource application using nlog and nhibernate to look at (codeplex, ...
0
votes
3answers
343 views

How can I logg a messages to a txt file with Nlog in MVC?

I am using Nlog in my MVC project, What I want to achieve is to logg a message when a action method is executed in my controller. and the logg message should appear on a txt file. But I cant seem to ...
0
votes
1answer
122 views

NLog.Extended not copied to my Web Project

I have a solution with 2 projects: Project 1: Wrapper.Dll which contains a NLog wrapper. NLog and NLog.Extended have been installed with Nuget. Project 2: is an ASP.Net MVC project which contains a ...
2
votes
1answer
873 views

NLog internal log not working with ASP.Net MVC

I have a problem with NLog for logging its internal logs with this configuration <?xml version="1.0" encoding="utf-8" ?> <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" ...
1
vote
1answer
911 views

NLog doen't work on IIS

I added NLog to my project. Following the instructions I created NLog.config. <?xml version="1.0" ?> <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" ...
4
votes
2answers
584 views

Application logging architecture

I'm writing an ASP .NET MVC3 application and as application is expected to be secure, I need a good enterprise application logging architecture. So I was seeking over existing loggin frameworks and ...
9
votes
2answers
1k views

Ninject.Extensions.Logging.nlog2 - How to?

Browsing the nuget library, i came across Ninject.Extensions.Logging.nlog2. Some googling and trying to figure things out, I can't seem to find how or why you would use this extension. Is it ...
2
votes
1answer
695 views

NLog, Elmah + shared library

I am trying to come up with a way to create a common library for all my MVC projects. I started off really simple with BaseController and BaseModel classes. Easy stuff! Now in my projects I would ...
3
votes
2answers
2k views

NLog throws configuration exception on all aspnet layout renderers

I have been working to set up NLog v2 on my ASP.NET MVC 3 application and it has worked very well so far. (I'm using the package from the offical nuGet repository) However, when I try to change the ...
9
votes
2answers
533 views

My logging framework is tied to my application forever!

Ok, so I'm looking at NLog. Based on the usage, my application would be tied to the logging framework. How do I overcome this? Also, when using NLog, I have to write too much monkey-code for every ...
2
votes
1answer
337 views

NLog File splitting

I'm using NLog to log to file. Is there a way to configure it to create a new log file when the current one reaches a certain threshold (eg ~50mb)? Can it be done from the configuration file or code?
1
vote
1answer
346 views

NLog and logging to database in a repository pattern project

In NLog, to target a database for logging, you just enter the database connection, etc and it connects straight to the db and does its stuff. My project uses the repository pattern, which all access ...
0
votes
1answer
185 views

Compile Errors when build configuration changed to production - C# MVC

Have taken over the management of a system written in C# MVC. It's a pretty big project so working my way through it bit by bit to learn what everything does. I've just made my first set of changes to ...
7
votes
2answers
2k views

Logging unhandled exceptions using NLog? Should ELMAH and NLog be used together?

I am using ELMAH in my ASP.NET MVC projects and I really like its simplicity. But I needed the ability to log certain events in my code in a log.Info("message") manner. Since ELMAH does not provide ...
2
votes
1answer
110 views

Is NLog work with customErrors?

when i use <customErrors mode="Off"/> and i have an error on the screen it writes to log file but when i use <customErrors mode="RemoteOnly"/> then i see my custom error page but error not ...
5
votes
2answers
1k views

Nlog not working in release mode

I am using Nlog to log the exceptions in my asp.net mvc (C#) application. Nlog is not working in release mode. The same is working when running in debug mode. What may be the problem? Is there any ...
0
votes
1answer
803 views

Application_Error event in Global.asax not firing in Release Mode? ASP.NET MVC application

I'm working on an ASP.NET MVC application. I'm having a problem where my Application_Error() event in my Global.asax file isn't firing in Release Mode. If I compile in Debug it fires just fine. PS: ...