Tagged Questions
2
votes
1answer
108 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
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
72 views
How to maintain Id's of log-entries in an agile project
Ok so Ive run into a situation I would like to resolve with minimum impact on our development group.
We are using log4net as our logging framework in a largish c# system (~40 production assemblies).
...
1
vote
1answer
83 views
DRY for constants used both in .NET code and web.config
I have a Web app which requires a custom installer (to be run using installutil) that registers an event source for the event log. This installer code includes a constant (specifically, the name of ...
0
votes
2answers
344 views
Log4Net won't create custom event log in event viewer
My WPF app uses Log4Net to record messages to the event viewer. This is working great on most machines. However, there are two machines in my office where there are problems. One is a physical ...
0
votes
3answers
370 views
Can log4net entries be queried?
I know I can write to the EventLog and query it. I would like to implement the ability for the user to select a menu item that will query all Warning and Error msgs connected to my app and send those ...
2
votes
3answers
765 views
log4net EventLog custom logname created, but not used
In a project, i'm using log4net to write down in the event log. I need to create a custom log so all will go there. I have tried to add the event to different logs, and it worked, but for some ...
3
votes
2answers
131 views
How can I setup log4net to log certain events if they occur/happen more than N times per time span?
Basically, I would like to be able to log events such as "HTTP timeouts" in my application only if they happen more than 100 times per minute (for example).
Is there any way to configure log4net to ...
4
votes
2answers
1k views
log4Net eventlog permissions issue using non-administrator account
This probably isnt an issue with SiteCore per se but I've included it for completeness. I have sitecore 6.3 running under IIS7 using a custom identity for the app pool. I cant get Sitecore to write ...
2
votes
2answers
1k views
Is it possible to specify a custom text Task Category using the EventLogAppender in log4net?
If you look at the Windows Event Viewer, you'll see some tasks with Task Categories such as Gatherer and Firing Agent, but if you use log4net to log events, you can only provide a short integer value ...
0
votes
1answer
3k views
log4net permission issue to write to application event log when the user is not in admin group in Windows 2008 R2 and IIS 7
I am having log4net permission issue from ASP.Net 4.0 web application to write to application event log, when the user is not in administrator group in Windows 2008 R2 and IIS 7. We are using NT ...
2
votes
3answers
2k views
log4net doesn't log in Windows Event Viewer
I would like to log in the Windows Event Viewer using log4net
I created a Console Application (.NET Framework 4), i added the reference log4net.dll, i put the following code in my App.config :
...
1
vote
1answer
1k views
Error Configuring Log4Net EventLogAppender
I have a console application using Log4Net 1.2.10.0. I added an EventLogAppender in my Log4Net config:
<apender name="eventLogAppender" type="log4net.Appender.EventLogAppender,log4net" >
...
0
votes
1answer
986 views
log4net configuration for Event Logging
I'm trying to enable solution-wide logging by adding a stand-alone project that wraps log4net. I found a code on StackOverflow but the code is using some config file. I do not understand that bit. ...
3
votes
1answer
99 views
Is it possible to write to an event log contained in a folder using log4net?
The goal is to have our application specific event logs in a folder with the name of our company. So, Company/App1, Company/App2. I would prefer to accomplish this with configuration, or with very ...
1
vote
3answers
531 views
Why is Log4Net ignoring my logName?
Okay so I have a WCF service writing to the Event Log.
All is well except for one detail..it won't pay any attention to the logName attribute,..here's the config.
<!--EventLog ...
1
vote
1answer
246 views
Are there any free offline eventlog explorer?
I want to have some to tool to explore our eventlogs.
There are few developers, so it would be nice if this tool is free.
Log4net(btw : we use log4net to log in our applications) dashboard ...
2
votes
4answers
2k views
Why do I get an empty eventlog when I do this with log4net?
I have class
namespace LogToolsTest
{
public class Foo
{
private static readonly ILog logger = LogManager.GetLogger(typeof(Foo));
public Foo()
{
...
6
votes
1answer
5k views
Configuring a custom event log for log4net
I'm using log4net for logging (duh!). Using the EventLogAppender, I can configure my application name, so that my events will show up in the Application/"My Application Name" event log. However, I'd ...
