Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
3k views

How do I use a stored procedure in log4net ADONetAppender?

I am using the ADONetAppender to (try) to log data via a stored procedure (so that I may inject logic into the logging routine). My configuration settings are listed below. Can anybody tell what I'm ...
6
votes
1answer
3k views

Is there anyway to programmably flush the buffer in log4net

I'm using log4net with AdoNetAppender. It's seems that the AdoNetAppender has a Flush method. Is there anyway I can call that from my code? I'm trying to create an admin page to view all the entries ...
2
votes
1answer
38 views

Log4net Adonet Appender: getting data jumbled when multiple instances of an application are runned

Scenario: A asp.net web application was deployed on remote IIS and is configured to log into oracle database.Log table has these columns:Login_ID,Log_message,Querystring,ipaddress. So the deployed url ...
2
votes
1answer
400 views

log4net to SQLServer : what happens if database is unavailable?

I have a log4net ado appender writing to a SQL Server database. I like it, I think it's neat. Before I send it into production, I want to know what the behaviour will be if the database goes down. I ...
2
votes
2answers
681 views

Log4Net works on Dev machine, fails when deployed to shared host (using same db/connstring)

I have log4net configured and working fine on my local machine, however when I deploy to my host (godaddy) it fails silently. I am using the same database/config file on my dev machine, and on the ...
2
votes
3answers
232 views

Get an entry ID for log4net ADONetAppender

I am using log4net in a web app, and log all page errors to a SQL server. I was wondering if there was any way to retrieve the entry ID generated by it. I'm going off of the documentation found here ...
2
votes
1answer
121 views

In log4net, should be output for a named logger also go to the default appender?

If I have log4net configured as below <root> <level value="INFO" /> <appender-ref ref="RollingFileAppender" /> </root> <logger name="MyNamespace.MyClass"> ...
1
vote
0answers
12 views

how to specify a constant parameter when using log4net's AdoNetAppender

http://logging.apache.org/log4net/release/config-examples.html given the log table here: CREATE TABLE [dbo].[Log] ( [Id] [int] IDENTITY (1, 1) NOT NULL, [Date] [datetime] NOT NULL, ...
1
vote
1answer
404 views

Debugging an ADO log4net appender (that won't append)

I've had this working before, but now it's not working and I've been tearing my hair out for the past two hours trying to figure it out. I have several appenders, where some are for a "main" log, and ...
1
vote
3answers
638 views

log4net :comparing adonetappender and rollingfileappender

I am trying to see which one of these appenders would perform better (the shorter the time, the better). RollingFileAppender or ADONetAppender? What are the other parameters I should consider when ...
1
vote
1answer
814 views

log4net - default values for adonetappender parameter

I am using log4net with AdoNetAppender. It logs all log info into a table. This table actually has 2 Integer columns (can be null). Here is the relevant part of my log4net config <commandText ...
0
votes
1answer
138 views

Log4Net: Using the C# AdoNetAppender with a custom Xml layout

I'm a bit stuck. I've been writing a logging module which requires the appender being able to execute a stored procedure on the database to log our information. I have written a custom xml layout ...
0
votes
2answers
385 views

AdoNetAppender in log4net not logging or throwing exception

I have defined a logger in my log4net.config file that is supposed to use the AdoNetAppender to log to an instance of SQL Server 2005. The logger is being called in my code, but no messages are being ...
0
votes
1answer
148 views

log4net adonet appender

I am using adonet appender of log4net for database debugging. Logging level is set to error. Database logging is configured for two applications running on different servers writting to same table on ...
0
votes
1answer
87 views

help with handling AdoNetAppender Erros generated via Log4Net

Im using Log4Net and instead of using an XML configuration file, im building both the fileAppender, and the AdoNetAppender completely in code. When the adoNetAppender is unable to connect to the ...
0
votes
1answer
539 views

how to insert into database from stored procedure in log4net?

I have to log thread context properties like this: string logFilePath = AppDomain.CurrentDomain.BaseDirectory + "log4netconfig.xml"; FileInfo finfo = new FileInfo(logFilePath); ...
0
votes
1answer
150 views

AdoNetAppender and Clob field

I have a asp.net 3.5 app that is using log4Net and AdoNetAppender. Currently the app uses a message field just like the log4net documentation ...
0
votes
2answers
1k views

log4net AdoNetAppender problem

I'm using log4net and i configured my xml file to log into database with AdoNetAppender and evrything seems to work properly when i create the applciation and configure evrything. And i can succesfuly ...
0
votes
1answer
1k views

ThreadContext property does not write to AdoNetAppender

I am using log4net 1.2.10.0. I have extended ILog and LogManager to include a new level, 'AUDIT'. I want to use an AdoNetAppender to log the %message to a database. I need other information logged and ...