RE: Encrypt connection string in Log4Net configuration

2016-01-26 Thread UniqueDisplayName
again thank you for the advice Joe, UDN -- View this message in context: http://apache-logging.6191.n7.nabble.com/Encrypt-connection-string-in-Log4Net-configuration-tp61227p61259.html Sent from the Log4net - Users mailing list archive at Nabble.com.

RE: Encrypt connection string in Log4Net configuration

2016-01-26 Thread Joe
t 4.5 and log4net 2.0.5. Thank You, UDN -- View this message in context: http://apache-logging.6191.n7.nabble.com/Encrypt-connection-string-in-Log4Net-configuration-tp61227.html Sent from the Log4net - Users mailing list archive at Nabble.com.

Encrypt connection string in Log4Net configuration

2016-01-25 Thread UniqueDisplayName
5. Thank You, UDN -- View this message in context: http://apache-logging.6191.n7.nabble.com/Encrypt-connection-string-in-Log4Net-configuration-tp61227.html Sent from the Log4net - Users mailing list archive at Nabble.com.

log4net configuration not read when log4net assembly is deployed on a shared path

2010-07-15 Thread reshma_r
Hi Scenario 1 I have log4net deployed on a share and am loading log4net from that share at runtime in an application for logging. Log4net configuration is part of application config file. When I run the application there is no error when calling the log operation but the logs are not written to

*Solved* Re: log4net configuration problems with vs2010 installed side by side with vs2008

2010-07-15 Thread impact99999
I found the solution by debugging the log4net source: [assembly: log4net.Config.XmlConfigurator(Watch = true)] has to be placed in the AssemblyInfo.cs of the Assembly that first fires a call to LogManager.GetLogger() ! -- View this message in context: http://old.nabble.com/log4net

log4net configuration problems with vs2010 installed side by side with vs2008

2010-07-14 Thread impact99999
Hello, i have installed both VS2010 and VS2008 on my computer. To configure log4net i use the following statement in AssemblyInfo.cs of my project: C#-Code: [assembly: log4net.Config.XmlConfigurator(Watch = true)] I think that is the most common way to use a log4net configuration in the

Re: How to enable IP address logging with Log4Net configuration

2009-01-13 Thread lmenaria
same time. Please let me know. Thanks, Laxmilal -- View this message in context: http://www.nabble.com/How-to-enable-IP-address-logging-with-Log4Net-configuration-tp14349967p21451120.html Sent from the Log4net - Users mailing list archive at Nabble.com.

RE: AW: log4net configuration withtou Xml file

2008-05-07 Thread Robin Shahan
Duh. Thanks; I wasn't paying enough attention, I was just looking at the code pattern. I must be working too many hours again. ;-) RobinS From: Knittel Bruno [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 06, 2008 11:05 PM To: Log4NET User Subject: AW: AW: log4net configuration withto

AW: AW: log4net configuration withtou Xml file

2008-05-06 Thread Knittel Bruno
7. Mai 2008 03:40 An: Log4NET User Betreff: Re: AW: log4net configuration withtou Xml file I added an overload to BasicConfigurator that accepts more than one appender so you don't have to cast down to the Hierarchy and understand what's going on at that level: https://issues.apa

RE: AW: log4net configuration withtou Xml file

2008-05-06 Thread Radovan Raszka
3:40 AM To: Log4NET User Subject: Re: AW: log4net configuration withtou Xml file I added an overload to BasicConfigurator that accepts more than one appender so you don't have to cast down to the Hierarchy and understand what's going on at

Re: AW: log4net configuration withtou Xml file

2008-05-06 Thread Ron Grabowski
ROTECTED]> To: Log4NET User Sent: Tuesday, May 6, 2008 3:38:15 AM Subject: AW: log4net configuration withtou Xml file Nachricht Hi Everyone, I finally managed to configure log4net through the code, even using multiple appenders. Was not so hard, I just took a look at how the B

RE: log4net configuration withtou Xml file

2008-05-06 Thread Robin Shahan
ser Subject: AW: log4net configuration withtou Xml file Hi Everyone, I finally managed to configure log4net through the code, even using multiple appenders. Was not so hard, I just took a look at how the BasicConfigurator, XmlConfigurator and the units tests were written. Follo

RE: log4net configuration withtou Xml file

2008-05-06 Thread Radovan Raszka
Great !! I check it and use in my application. Radovan From: Knittel Bruno [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 06, 2008 9:38 AM To: Log4NET User Subject: AW: log4net configuration withtou Xml file

AW: log4net configuration withtou Xml file

2008-05-06 Thread Knittel Bruno
distribution of it and its attachments is strictly prohibited. Please inform the sender immediately and delete/destroy the original message and any copies. Thank you. -Ursprüngliche Nachricht- Von: Radovan Raszka [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 6. Mai 2008 08:00 An: Log4NET

AW: log4net configuration withtou Xml file

2008-05-05 Thread Knittel Bruno
: Radovan Raszka [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 6. Mai 2008 08:00 An: Log4NET User Betreff: RE: log4net configuration withtou Xml file Hello Bruno, configuring log4net directly from the code is my dream too, but documentation did not give any example how to do this. It is simple if

RE: log4net configuration withtou Xml file

2008-05-05 Thread Radovan Raszka
u'll be able to find what is missing there, let me know Radovan Raszka From: Knittel Bruno [mailto:[EMAIL PROTECTED] Sent: Monday, May 05, 2008 9:32 AM To: [email protected] Subject: log4net

log4net configuration withtou Xml file

2008-05-05 Thread Knittel Bruno
Hello Everyone, I need to be able to configure log4net without the XmlConfigurator, that is directly from my code. I am aware of the BasicConfigurator but one appender is not enough for me. I would like to be able to create some new appenders, remove (or disable) them and change t

Re: How to enable IP address logging with Log4Net configuration

2007-12-17 Thread Laxmilal Menaria
---Original Message- > From: Laxmilal Menaria [mailto:[EMAIL PROTECTED] > Sent: Saturday, December 15, 2007 6:25 AM > To: [email protected] > Subject: How to enable IP address logging with Log4Net configuration > > Hello, > > I am asp.net user, and want to

RE: How to enable IP address logging with Log4Net configuration

2007-12-17 Thread Johnson, Cedrick
ame(); In the RollingLogFileAppender's layout/ConversionPattern section: Hope this helps, CJ -Original Message- From: Laxmilal Menaria [mailto:[EMAIL PROTECTED] Sent: Saturday, December 15, 2007 6:25 AM To: [email protected] Subject: How to enable IP address

How to enable IP address logging with Log4Net configuration

2007-12-15 Thread Laxmilal Menaria
Hello, I am asp.net user, and want to store IP address in Log4Net logs, I am using RollingFileAppender, so how can I enable IP logging with conversion pattern. Please let me know, how its is possible ? Thanks in advance, Laxmilal

RE: doubt about log4net configuration

2007-08-27 Thread Radovan Raszka
ED] Sent: Monday, August 27, 2007 3:54 PM To: [email protected] Subject: doubt about log4net configuration Hi, I need some ligths on log4net. A friend of mine told me that we use the log4j and we only con

doubt about log4net configuration

2007-08-27 Thread Diana Santos
Hi, I need some ligths on log4net. A friend of mine told me that we use the log4j and we only configure one file obtaining all log the for the application without adding aditional code lines, including the log of the actions taken in the data base. (INSERT / SELECT / DELETE .) Konw, i'm usi

MbUnit and log4net configuration

2007-06-12 Thread Danny Gorton
I'm using log4net version 1.2.10.0 on MS .NET 2.0. My assembly type is an MbUnit (unit test) DLL. I'm launching it using TestDriven.NET. The test code is exercising our framework library. The question I have is about how the log4net configuration gets loaded in this instance.

RE: Log4Net configuration

2007-02-12 Thread Nicko Cadell
; To: [email protected] > Subject: Log4Net configuration > > Hi, > > I am using Log4Net for My website. that is good logging tool. > I am using rollingfile Appender, with info, debug, warn ans > fatel level.. but when use that level the log file have > llevels WAR

Log4Net configuration

2007-01-30 Thread Laxmilal Menaria
Hi, I am using Log4Net for My website. that is good logging tool. I am using rollingfile Appender, with info, debug, warn ans fatel level.. but when use that level the log file have llevels WARN, FATAL, INFO, and DEBUG, I wants instead of these words custom words for that.. so anyone tell me a

RE: Xml schema for Log4Net configuration

2006-03-27 Thread Nicko Cadell
The log4net configuration is set by using reflection, the xml configuration file is read and each element is matched up to a property or method on a .net object. By adding a new type you are extending the configuration syntax. There are a few xml elements and attributes that are specifically

RE: Xml schema for Log4Net configuration

2006-03-13 Thread Ron Grabowski
can you please > notify > me. > > > Thanks, > > Julian > > > > Julian Macagno > > > > > > From: Meera Rajaram [mailto:[EMAIL PROTECTED] > Sent: Monday, March 13, 2006 1:13 PM > To: log4net-user@logging.

RE: Xml schema for Log4Net configuration

2006-03-13 Thread Macagno, Julian
Log4Net configuration   Hi, I need to get the XML schema for the Log4Net Configuration settings.   Thanks, Meera  

Xml schema for Log4Net configuration

2006-03-13 Thread Meera Rajaram
Hi, I need to get the XML schema for the Log4Net Configuration settings.   Thanks, Meera  

RE: Using machine.config for log4net configuration

2005-06-01 Thread Darren Blackett
). =Putting log4net configuration into machine.config works, but only if you haveno log4net configuration section in the app/web.config. Unfortunately any entry at all in the application config file causes themachine.config section to be discarded - it

RE: Using machine.config for log4net configuration

2005-06-01 Thread rgeemail-log4net
Putting log4net configuration into machine.config works, but only if you have no log4net configuration section in the app/web.config. Unfortunately any entry at all in the application config file causes the machine.config section to be discarded - it isn't additive. This is just the way

RE: Using machine.config for log4net configuration

2005-05-31 Thread Howard Weisberg
ubject: RE: Using machine.config for log4net configuration Having not received a response, I delved into the code a bit. It looks like Log4Net doesn't look in the machine.config file, so any settings there would never be read or used... Back to the drawing board... --p. -Original Message---

RE: Using machine.config for log4net configuration

2005-05-31 Thread Conant, Patrick D
05 10:49 AM To: [email protected] Subject: Using machine.config for log4net configuration I'm trying to create central log4net configuration settings for multiple .NET components running on a single machine. I thought I'd be able to do this by putting log4net.dll in the

Using machine.config for log4net configuration

2005-05-27 Thread Conant, Patrick D
I'm trying to create central log4net configuration settings for multiple .NET components running on a single machine. I thought I'd be able to do this by putting log4net.dll in the GAC and adding log4net config settings in the machine.config file. However, my web services still look f

RE: Log4net Configuration Settings

2004-12-17 Thread Nicko Cadell
produced? Cheers, Nicko > -Original Message- > From: Abhijit Salvi [mailto:[EMAIL PROTECTED] > Sent: 17 December 2004 18:58 > To: [email protected] > Subject: Log4net Configuration Settings > > Hi, > > > > I have recently

RE: Log4net Configuration Settings

2004-12-17 Thread Hart, Aaron
You should just need to change the text “category” to “logger”. Then in your app call GetLogger(“XMLTest.WebForm1”).   -Original Message- From: Abhijit Salvi [mailto:[EMAIL PROTECTED] Sent: Friday, December 17, 2004 1:34 PM To: Log4NET User Subject: RE: Log4net Configuration

RE: Log4net Configuration Settings

2004-12-17 Thread Abhijit Salvi
: Log4net Configuration Settings   Hi,       I have recently started using the Log4net Tool. I read the documentation and it has great potential for logging errors, debugging purposes and tracing.       However I have not been able to probably configure correctly w.r.t. to my project

RE: Log4net Configuration Settings

2004-12-17 Thread Hart, Aaron
Below your root logger configuration,I believe you need to change the “Category” element name to “logger”.   Aaron   -Original Message- From: Abhijit Salvi [mailto:[EMAIL PROTECTED] Sent: Friday, December 17, 2004 11:58 AM To: [email protected] Subject: Log4net

Log4net Configuration Settings

2004-12-17 Thread Abhijit Salvi
Hi,       I have recently started using the Log4net Tool. I read the documentation and it has great potential for logging errors, debugging purposes and tracing.       However I have not been able to probably configure correctly w.r.t. to my project.       Here are my sett