0
votes
1answer
28 views

Logging custom properties in Python

In log4net I can add a custom property to the thread context like this: ThreadContext.Properties["UserName"] = Thread.CurrentPrincipal.Identity.Name; I can then customize the format string to ...
7
votes
8answers
225 views

unable to get log4net working with .net windows service

I have a windows service, with an app.config, and log4net.config app.config: <configSections> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" ...
0
votes
1answer
37 views

Setting up a default log when Logger not found in Log4Net

I am using Log4Net as the logging mechanism for an application of ours. Our configuration is contained in a config file and in our code we programatically invoke which of our several loggers (mostly ...
0
votes
1answer
30 views

Using log4net with ASP.Net WebForms in Visual Basic

I am failing to get log4net to log anything in ASP.Net webforms. This is what Im doing: Web.config <configuration> <configSections> <section name="log4net" ...
3
votes
2answers
100 views

Can you configure log4net in code instead of using a config file?

I understand why log4net uses app.config files for setting up logging - so you can easily change how information is logged without needing to recompile your code. But in my case I do not want to pack ...
1
vote
2answers
33 views

Programatically force a new log file with Log4Net

NOTE: I read this question and answer, and it does not work for what I want: Log4Net: Programmatically specify multiple loggers (with multiple file appenders) I have a WCF service that is a ...
0
votes
0answers
68 views

create log file for each and every session created in web application

I need the log info for each and every session created in the web application in asp.net. the log file must be rollback by size 5 I am using the following code. For each time the log file created i ...
0
votes
0answers
34 views

Logging repeated messages only once or at a lesser frequency

I am using log4net for our application logging needs. The application is built on .NET 3.5. This application is a data driven engine which evaluates certain calculations on data change. For example, a ...
0
votes
0answers
37 views

MaximumFileSize set to 1 MB, log4.net still writes 10 MB into the log file?

I've specified the file size as a maximum of 1 MB but it writes upto 9696 KB in 1 file: <?xml version="1.0"?> <configuration> <configSections> <section name="log4net" ...
2
votes
2answers
160 views

Using .NET Trace and then NLog or log4net etc, as a listener

I would like to avoid writing my own generic logging interface, and rather use built in Trace funtionality, which to start with doesn't require any logging library. Before I address logging libraries, ...
2
votes
2answers
70 views

.NET: Logging entry / exit without AOP?

I want to be able to log when code execution enters a method and then exits, I was wondering is anyone has any comments on the best way to achieve this? I know an AOP way of injecting the logging ...
0
votes
1answer
58 views

C++/CLI: how to store a managed reference inside a native class?

In my mixed solution (C++/.NET), I'd like to pass instances of Log4Net's ILog to C++ objects (to unify logging across the solution). I thought to write a C++ interface (LogInterface), and then ...
0
votes
1answer
28 views

too many logged information on log4net

I have some mvc4 application where I want to log when admin user is logged, when bad login is happen, crud operations, etc. Now everything works but I cannot see tree from the forest :) Too many ...
2
votes
1answer
33 views

Log4net - check if specific level is set, and if so, log on that level

I'm trying to write some extension methods for log4net, and one requirement is that the user can specify which level he would like to have my extension log a message on. Now I'd like to be able to ...
0
votes
1answer
90 views

Log4net works when specifying logger name but not by reflection? Is this an issue?

I am attempting to overhaul one application's (a console app written in VB.NET) logging system using log4net. I configured log4net according to this CodeProject tutorial. After configuring, I have ...
2
votes
1answer
65 views

Block logging for assemblies having seperate loggers in log4net

I have two log files written from my application, which has multiple assemblies in the following manner: Assembly1 log -> MainLog.log Assembly2 log -> MainLog.log Assembly3 log -> ...
2
votes
1answer
113 views

Logging Windows Service

I have the following code for logging my windows service which I found through research online. its done inside of my service class right before it is being initialized like below. public ...
0
votes
0answers
32 views

Cannot access log4net.GlobalContext - Why not?

I have an AdoNetAppender logging to a SQL Server database. It works fine; however, I want to add some custom parameters. I have seen an approach like the following: ...
0
votes
2answers
64 views

Log4Net doesn't release resources

I have a DLL file which does Log4Net logging to a a file. There is a process which loads the DLL and can create multiple instances of the DLL. Each instance of a DLL has to create a separate log ...
0
votes
1answer
45 views

IIS Web Garden - File Access / Write from different processes

I host my web application on IIS. The pool that application resides in has 4 worker processes. (Web Garden) To make a test, for each requst to aspx page, I write the Process Id of Executing Process ...
0
votes
3answers
94 views

Getting mvc 3 exception: The controller for path '/GMIS/ie-css3.htc' was not found or does not implement IController?

The application seems to run fine? But I keep seeing these exceptions in my log: 2013-03-11 11:32:46,736 [30] DEBUG COPSGMIS.Logging.GMISLogging - Executing controller: Home, action: Index 2013-03-11 ...
0
votes
1answer
117 views

Where to catch exception using log4net in a MVC 3 application?

I placed the following code in the global file to catch exception in my mvc application: void Application_Error(Object sender, EventArgs e) { Exception ex = ...
0
votes
1answer
81 views

Direct logging to different outputfiles with log4net

I need to log certain events in my app to a certain file. I have a main log file which is working, but how do I direct specific events to a certain file. In my example below, how do i log the count ...
2
votes
2answers
70 views

Is there a way to log any unexpected Exception occurred in ASP.NET page?

I'm using log4net to log expected Exception like following: try { // some exception occurred } catch (Exception ex) { log.Error("Exception occurred!", ex); } The info will be written to a ...
1
vote
1answer
77 views

Logging using ORM (log4net and OpenAccess)

Based previous experience and research, I implemented logging at the workplace using log4Net. However, there was general preference to use a custom logger when log4net was presented in our ...
0
votes
1answer
21 views

What should I be logging in my apps

I am a Junior developer and I have been tasked with installing Log4Net in my app and getting it working. That part is done. My question is What should I be loggining. It seems very broad and I am ...
0
votes
1answer
52 views

NLog limit the number of times same error is logged within set period

We are using NLog to send email messages whenever a 'serious' error occurs. It might be happening very often in some cases generating too many messages. Is there a way to make NLog limit the number ...
0
votes
0answers
46 views

Implementing audit logging

I need to add audit logging of user actions to a web application. I'm planning to implement audit entries as log4net logs and store them in database. Are there any other approaches/best practices?
0
votes
0answers
71 views

Log4Net with AdoAppender but nothing in SQL

I try to log error messages using log4net and save them into database using SQL, but nothing happens at all.... Did I miss something? Here is my code Hierarchy hierarchy = ...
0
votes
1answer
89 views

LogParser Lizard

I am using LogParser Lizard to parse Log4Net files and when I am trying to do a query such as: SELECT * FROM "C:\Logs*.log". I get an error saying "The process cannot access the file [...] because it ...
0
votes
1answer
222 views

Log4Net RollingFileAppender not flushing IO buffer with low volume log

I'm pondering on the same issue as HENRI COOK did. It's been reported as a bug on Apache Jira as far as we can tell from the short description. My problem in essence is that events are only logged ...
2
votes
1answer
56 views

System wide machine.config log4net settings WITH web app level config settings

I am trying to get log4net to work with both machine.config settings AND web.config settings (or even custom config files) but it is not working so well. My goal is to set system wide settings (i.e. ...
0
votes
1answer
63 views

Java logger framework with DB appender

I am looking for the a java logger framework like log4net(c#). I need a logger with an appender like the AdoNetAppender in log4net that can insert logs into a self specified table and columns. The ...
0
votes
0answers
157 views

Ninject, MVC 4 and log4net

I have set up a simple mvc 4 site using Ninject for DI. I wanted to add some logging so I set up Ninject.Extensions.Logging but with no luck. The logger never gets injected. Any suggestions?
0
votes
1answer
49 views

Log4Net Multiply loggers and appenders

At the moment I am creating a logfunction. I implemented two ILog objects, for eg. logger1 and logger2. I also create two custom appenders (appender1 and appender2) inheriting the AppenderSkeleton ...
0
votes
0answers
114 views

log2conosle remoting appender for log4net doesnt work

i have the following app.config: <log4net> <appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender"> <param name="File" value="S3Logger.log"/> ...
0
votes
1answer
38 views

can I limit log4net to eventview by size?

My webApplication uses log4net that writes to event-viewr. I want to limit its size to 1 GB. is there any way to do this within the webcofig? (as it can be limited to log file)
0
votes
0answers
71 views

log4j/log4net remote logging configuration

I have c# application using log4net, configured with remote logging appender. I also have remote logging service which listen on some port and saves logs in text file. Now I made Java application ...
2
votes
2answers
209 views

How do I use log4net within a dll that does not depend on a client's app or web.config?

I want to be able to dynamically control the level of logging my Azure cloud-based applications perform. To do this I'm creating a shared log4net-based DLL. There are lots of questions about log4net ...
0
votes
2answers
103 views

Log4net to database not working

I've got problem logging to the DB via log4net. User has permission to insert into database Same insert statement does work in Management Studio log4net does log to file but not to DB Connection ...
2
votes
3answers
200 views

Read & log HttpSession data at run-time with log4net

This is probably not possible, but I'm wondering if there's a way to make it work. I have a large ASP.NET MVC43 application that is already instrumented with logging statements. Now we need to ...
0
votes
1answer
180 views

How to change the Logging settings in Web.config on Windows Azure for all Web Roles?

ASP.NET application on Windows Azure. The application is scalable and runs on 1..N Web role instances. We have log4net write to the Windows Event log and have Windows Azure Diagnostics consolidate to ...
2
votes
2answers
797 views

log4Net log file not writing

I am trying to implement log4net in my asp.net web application. But unfortunately the file is not creating.. Below is is my configuration.. 1 . Added log4net .dll reference 2 . Web.config settings. ...
2
votes
1answer
133 views

Is the creation of a log4net instance/object required?

I use log4net for my logging needs throughout my solution (which has various projects which in return have various classes). Is it really needed to always create an instance (aka object) like so: ...
0
votes
0answers
71 views

Custom Log4Net formatter to log custom exception properties

I want log4net to log all property values on custom exceptions. It seems fairly easy to use reflection to navigate over all properties (taking collections and complex types into account) and format ...
3
votes
2answers
214 views

How to organize centralized logging?

The situation is: we've got a number of working application instances, developed on C#. We want them to log in one place (that could be a file). As far as I know log4net and NLog can send logs via ...
0
votes
1answer
146 views

log4net - Log file created but not being written to

I have read every answer related to this question and nothing has helped me. This is my Web.config file (I use log4net in my WCF service) (Only the relevant section) <configSections> ...
0
votes
1answer
246 views

MVC 4 view (cshtml) error is not logging to Splunk via log4net

I have implemented error handling code to log exceptions to Splunk (using log4net) wherever they occur in my MVC 4 application. The problem is that when an exception arises within a view file ...
1
vote
2answers
68 views

Expose the HttpContext in log4net

I have an ASP.NET website and I am doing logging with log4net. As logging requirements change often, I want to enable PMs to modify the information that gets logged and also to be able to log extra ...
0
votes
1answer
72 views

Retrieving file value from log4net's config file

I'm stuck in a situation where I believe I need to know the name of the log file that the user has specified in logging.xml. Specifically, I am trying to retrieve the value of the value attribute in ...

1 2 3 4 5 8