RE: Apache log4net Needs Help

2016-11-05 Thread Joe
> If you are willing to help, please join log4net's dev mailing list and raise > your hand. Look through log4net's issue tracker and pick things you'd like to > work on. If you don't know where to start, please ask, Dominik and Stefan > will be there to help. > If there is anything holding you

RE: Apache log4net Needs Help

2016-10-15 Thread Joe
I'm interested in this as I've also written an async appender. Mine is currently lossy both at application shutdown and when the application floods it with events faster than it can process them, so to date I haven't been too concerned by this issue. Do you have an MCVE (http://stackoverflow.c

RE: Adjust log4net logging severity

2016-04-05 Thread Joe
Not sure I fully understand all your requirements but: - If you want your users to be able to dynamically change the logging level while the application is running, then revert to the configured values when the application exits, you can use the techniques described here: http://stack

RE: Encrypt connection string in Log4Net configuration

2016-01-26 Thread Joe
I would do this as follows: - Use connectionStringName in the log4net ADONetAppender configuration to specify the name of a connection string in the "connectionStrings" configuration section - Encrypt the connectionStrings configuration section. I believe log4net reads its configuration as XML

RE: BUT NOT

2014-11-18 Thread Joe
Apologies, I didn't read your original properly. Your configuration should work as it stands:, i.e.: - Alpha.Import.Core and its child loggers will log to "two" only - Alpha and all its child loggers except Alpha.Import.Core and children will log to "one" only: -Original M

RE: BUT NOT

2014-11-18 Thread Joe
Use additivity="false" in your configuration - look for "Additivity" in the log4net user manual: http://logging.apache.org/log4net/release/manual/introduction.html -Original Message- From: xdzgor [mailto:p...@alpha-solutions.dk] Sent: 18 November 2014 10:22 To: log4net-user@logging.apach

RE: AdoNetAppender on Azure SQL: Works then quits working

2014-09-18 Thread Joe
ug 20, 2014 at 11:01 AM, Joe wrote: > and route this trace output to a file. Thanks much for your reply. I'm not clear about how to route the internal debug output to a trace file. An Azure website provides access to the file system via the project's App_Data so if I knew the p

RE: AdoNetAppender on Azure SQL: Works then quits working

2014-08-20 Thread Joe
I'd try enabling Log4net tracing () and route this trace output to a file. It might give you a clue as to what's happening - perhaps AdoNetAppender is not recovering from a database connection failure properly. -Original Message- From: Steve Hueners [mailto:am.st...@gmail.com] Sent: mard

RE: How to dynamically query and set logger levels?

2013-12-04 Thread Joe
I posted an answer to your SO question. Basically the code sample you quoted isn't accurate: instead of casting ILog to log4net.Repository.Hierarchy.Logger you should be casting ILog.Logger. I've implemented an abstraction around these administrative functions: a class "LoggerTree" that e

RE: Lossy logging on a per user basis for a high traffic website

2012-08-13 Thread Joe Udwin
a more performant way to handle this in log4net? Thanks Joe -Original Message- From: Dominik Psenner [mailto:dpsen...@gmail.com] Sent: 08 August 2012 15:53 To: 'Log4NET User' Subject: RE: Lossy logging on a per user basis for a high traffic website Hi Joe, > I would n

RE: Lossy logging on a per user basis for a high traffic website

2012-08-08 Thread Joe Udwin
st 2012 12:09 To: 'Log4NET User' Subject: RE: Lossy logging on a per user basis for a high traffic website Hi Joe, I would recommend You to implement a filter that matches your requirements by implementing the IFilter interface or - even better - by subclassing Filter

Lossy logging on a per user basis for a high traffic website

2012-08-07 Thread Joe Udwin
I'm looking to setup lossy logging (on a high traffic website) on a per user (or per request) basis. E.g The application logs nothing until an error occurs when all logs are then written to a file (or db). I have been playing around with the BufferingForwardingAppender but it looks like it buff

FW: Date Pattern question on RollingFileAppender

2008-05-05 Thread Joe Richardson
ath) at System.Security.Permissions.FileIOAccess.AddExpressions(String[] value, Boolean checkForDuplicates, Boolean needFullPath) ...etc The append works fine withouth the DatePattern, but I always get the above error using any datePattern statement like: I also tried with tick marks: Thanks, Joe.

RE: Making SMTPAppender Send Exactly One Email

2007-07-11 Thread Joe Waldner
Unsubscribe -Original Message- From: koala993 [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 11, 2007 7:51 AM To: log4net-user@logging.apache.org Subject: RE: Making SMTPAppender Send Exactly One Email I don't think this would work either : the bufferSize is actually the number of mess

RE: Making SMTPAppender Send Exactly One Email

2007-07-11 Thread Joe Waldner
unsubscribe -Original Message- From: koala993 [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 10, 2007 4:16 AM To: log4net-user@logging.apache.org Subject: Re: Making SMTPAppender Send Exactly One Email I don't think it's possible, a solution would be to be able to fire only once the "ERR

Unsubcribe

2007-06-27 Thread Joe Waldner
From: Khalid, Amer [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 27, 2007 12:01 PM To: Log4NET User Subject: Unsubcribe From: Alvaro Rozo [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 27, 2007 11:08 AM To: Log

RE: RollingFileAppender: Date/Time based rolling doesn't work

2007-05-08 Thread Joe Joe
This sounds like a permissions issue. Does the ASPNET user have modify permissions for the directory that holds the logs? The account must have permission for the directory or it wouldn't have been able to create the original log file. I guess I should make time to take a look at the source.

RollingFileAppender: Date/Time based rolling doesn't work

2007-05-04 Thread Joe Joe
Log4Net 1.2.10. In an ASP.NET web application I've configured a RollingFileAppender to roll every day. It works fine on my development server. On the production server, I never see a rolled file - instead it always appends to the configured log file. The main difference I can see is that t

RE: logging (or not) specific classes, through the config

2006-09-12 Thread Joe Waldner
Thanks! Works great. -Original Message- From: Dag Christensen [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 12, 2006 2:10 AM To: Log4NET User Subject: SV: logging (or not) specific classes, through the config Try this: Place it on the same level as your category. Rega

logging (or not) specific classes, through the config

2006-09-11 Thread Joe Waldner
Is there a way to log (or not) specific classes even though they have a logger configured? I want the appenders that I use to be at the debug level but I am not interested in messages from this particular class. There should be a way to do this from the App Config file, but I have not fou

RE: Windows Service console output

2006-09-07 Thread Joe Waldner
if someone can show differently. This link is pretty informative on the limitations of a service communicating via a user interface. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/h tml/ vbconintroductiontontserviceapplications.asp -Original Message- From: Joe Wa

RE: Windows Service console output

2006-09-07 Thread Joe Waldner
when I need to see a sevrice's log in realtime. HTH, Dean Fiala Chief Technology Officer Celadon Laboratories, Inc. http://www.celadonlabs.com Microsoft MVP -Original Message- From: Joe Waldner [mailto:[EMAIL PROTECTED] Sent: Thursday, September 07, 2006 11:03 AM To: log4net-user@l

Windows Service console output

2006-09-07 Thread Joe Waldner
Log4net 114322 Platform .Net framework 1.1 VS 2003 I have a windows service and I am logging events to a file and a console appender. Log4net is watching the app config file. (using an attribute) The File appenders work fine but I get no events in the output window. (The console appender works fin

.NET 2.0 version of Log4Net

2005-11-14 Thread Joe Joe
When will a version of Log4Net compiled for the .NET 2.0 Framework be available for download? Thanks, Joe _ The new MSN Search Toolbar now includes Desktop search! http://toolbar.msn.co.uk/

Slow Performance

2005-09-02 Thread Joe Becknell
d anything like this? Thanks, Joe.

RE: log4net not producing output

2004-12-16 Thread Joe Joe
I've changed the directory settings to give the ASPNET user full access to the directory where the log files are, without any success. It isn't event creating the log files. Is your production server running Windows 2003? In which case it will probably be using the Network Service account rat

Re: Log timestamp in UTC

2004-12-03 Thread Joe Joe
to have patterns for both UTC and local time. But it would be better to retrieve the date as UTC, then convert to local when rendering (local to UTC conversions are ambiguous for 1h each year at the end of daylight savings time). Joe __

Log timestamp in UTC

2004-11-27 Thread Joe Joe
Does there exist a conversion pattern specifier that logs the timestamp in UTC? _ Stay in touch with absent friends - get MSN Messenger http://www.msn.co.uk/messenger

Re: Use of backslash in file paths

2004-11-10 Thread Joe Joe
a bug? You need to double up the backslashes: On Tue, 09 Nov 2004 17:34:23 +, Joe Joe <[EMAIL PROTECTED]> wrote: > Log4Net 1.2.0 Beta 8 doesn't seem to like backslashes in filenames - e.g. > the following example results in output to "logTrace.log"

Use of backslash in file paths

2004-11-09 Thread Joe Joe
Log4Net 1.2.0 Beta 8 doesn't seem to like backslashes in filenames - e.g. the following example results in output to "logTrace.log" instead of "log\Trace.log": Is this a bug? I can workaround by using a forward slash or doubling the backslash, but my administrators may forget to do this..