Re: Log4j2 with syslog4j

2022-05-10 Thread Doug Wegscheid
can you please send your configuration *and* the actual exception message with traceback (NOT the code)? On Tuesday, May 10, 2022, 08:39:06 AM EDT, EDMONDO SENA wrote: The exception is the following: Which exception are you seeing? That block of code could throw about 5 different

Re: Log4j2 with syslog4j

2022-05-10 Thread Doug Wegscheid
Which exception are you seeing? That block of code could throw about 5 different exceptions. Can you post the actual exception and traceback? Sent from AT&T Yahoo Mail on Android On Tue, May 10, 2022 at 5:19 AM, EDMONDO SENA wrote: Hi all, I am sending the logs of my subsystems to the Sy

Re: authapi.jar with Log4j2

2021-10-29 Thread Doug Wegscheid
: > > it has already been done and it doesn't work! > > This is the exception: > > Exception in thread "main" > Java.lang.NoSuchMethodError:org.apache.log4j.spi.LocationInfo. > > > > > On 2021/10/29 15:09:59, Doug Wegscheid wrote: > > Put th

Re: authapi.jar with Log4j2

2021-10-29 Thread Doug Wegscheid
at to do! Said so it seems a simplistic discussion. //Edmondo. On 2021/10/29 14:13:31, Doug Wegscheid wrote: > You can your existing authapi.jar: > "Log4j 2 provides support for the Log4j 1 logging methods by providing > alternate implementations of the classes containing those me

Re: authapi.jar with Log4j2

2021-10-29 Thread Doug Wegscheid
You can your existing authapi.jar: "Log4j 2 provides support for the Log4j 1 logging methods by providing alternate implementations of the classes containing those methods. These classes may be found in the log4j-1.2-api jar distributed with the project. All calls to perform logging will result

Re: STDERR to log file

2020-07-21 Thread Doug Wegscheid
Look at  https://stackoverflow.com/questions/1200175/log4j-redirect-stdout-to-dailyrollingfileappender Sent from AT&T Yahoo Mail on Android On Tue, Jul 21, 2020 at 3:00 AM, Sumit Bhardwaj wrote: Hello Experts, Is there a way to redirect STDERR to log file using log4j2? I am aware of the

Re: loggerConfig.getAppenderRefs().clear()

2020-03-25 Thread Doug Wegscheid
RoutingAppender() that knows if external or internal logging is to be done and then routes messages to the appropriate appender a solution? More or less yes. On 2020/03/25 14:53:08, Doug Wegscheid wrote: >  ah. a couple of solutions present themself (and hopefully someone more >conv

Re: loggerConfig.getAppenderRefs().clear()

2020-03-25 Thread Doug Wegscheid
ss of log events during that operation. The appropriate ways to programmatically initialize configuration is documented here: https://logging.apache.org/log4j/2.x/manual/customconfig.html#Configurator On Wed, 25 Mar 2020 at 09:53, Doug Wegscheid wrote: > >  ah. a couple of solutions present th

Re: loggerConfig.getAppenderRefs().clear()

2020-03-25 Thread Doug Wegscheid
, come and go! > > 2)  Would a RoutingAppender() that knows if external or internal logging is > to be done and then routes messages to the appropriate appender a solution? > > More or less yes. > > > On 2020/03/25 14:53:08, Doug Wegscheid wrote: > >  ah. a couple of solut

Re: loggerConfig.getAppenderRefs().clear()

2020-03-25 Thread Doug Wegscheid
another system to run-time. On 2020/03/25 14:29:26, Doug Wegscheid wrote: >  upon examination, I see that clearAppenders() is not public, so that won't >work. > There is probably a way to do what you want, if you can tell us why you need > to clear the appenders. > >

Re: loggerConfig.getAppenderRefs().clear()

2020-03-25 Thread Doug Wegscheid
i do it? Regards. On 2020/03/25 14:18:03, Doug Wegscheid wrote: >  you are trying to clear the list of appenderRefs. Are you trying to call >clearAppenders() instead of clear()? > >    On Wednesday, March 25, 2020, 10:03:27 AM EDT, EDMONDO SENA > wrote:  >  >  >

Re: loggerConfig.getAppenderRefs().clear()

2020-03-25 Thread Doug Wegscheid
you are trying to clear the list of appenderRefs. Are you trying to call clearAppenders() instead of clear()? On Wednesday, March 25, 2020, 10:03:27 AM EDT, EDMONDO SENA wrote: Why this instruction goes in UnsupportedOperationException? List value = loggerConfig.getAppenderRefs(); v

Re: removeAllAppenders() Log4j2

2020-03-25 Thread Doug Wegscheid
ble to use in some way removeAllAppenders? Why this instruction has been deleted? On 2020/03/25 13:14:52, Doug Wegscheid wrote: >  why do you need to remove all appenders? what happens if you do not? > >    On Wednesday, March 25, 2020, 9:12:45 AM EDT, EDMONDO SENA > wrote:  > 

Re: removeAllAppenders() Log4j2

2020-03-25 Thread Doug Wegscheid
why do you need to remove all appenders? what happens if you do not? On Wednesday, March 25, 2020, 9:12:45 AM EDT, EDMONDO SENA wrote: When you close or switch off our system we've to remove all appenders. In log4j this instruction was possible! On 2020/03/25 12:59:30,

Re: removeAllAppenders() Log4j2

2020-03-25 Thread Doug Wegscheid
Are you looking at clearAppenders()? On Wednesday, March 25, 2020, 8:56:57 AM EDT, EDMONDO SENA wrote: I think It removes the appender single by single not all in one instruction! On 2020/03/25 12:46:19, Doug Wegscheid wrote: >  I googled for "log4j2 remove all append

Re: removeAllAppenders() Log4j2

2020-03-25 Thread Doug Wegscheid
However: from https://logging.apache.org/log4j/log4j-2.1/manual/configuration.html: | Note that unlike Log4j 1.x, the public Log4j 2 API does not expose methods to add, modify or remove appenders and filters or manipulate the configuration in any way. *Why* do you need to remove the appenders

Re: removeAllAppenders() Log4j2

2020-03-25 Thread Doug Wegscheid
I googled for "log4j2 remove all appenders" and found this: How to remove appender from logger in log4j2 programmatically? | | | | | | | | | | | How to remove appender from logger in log4j2 programmatically? Is there any way I can remove appender from a logger in log4j2 programmatica

Re: getAppender

2020-03-19 Thread Doug Wegscheid
There is no appender named "LoggerLog4jDebug". The appender is probably "LoggerLog4jDebugAppender"? On Thursday, March 19, 2020, 11:19:35 AM EDT, EDMONDO SENA wrote: The code is: try {                 ConfigurationSource source = new ConfigurationSource(new                     FileIn

Re: Defer evaluation of FileAppender filename until file is opened?

2020-02-04 Thread Doug Wegscheid
quot;x" to Works perfectly! On Wednesday, February 5, 2020, 2:48:30 AM EST, Doug Wegscheid wrote: That looks promising, but I am having an issue with the RoutingAppender throwing an NPE when the first event gets pas

Re: Defer evaluation of FileAppender filename until file is opened?

2020-02-04 Thread Doug Wegscheid
is to use the RoutingAppender and only supply a default Route. The Appender itself will only be created when something is logged to the Route. Ralph > On Feb 4, 2020, at 6:55 PM, Doug Wegscheid wrote: > > yes, that works as designed, but does not resolve my problem. The filename

Re: Defer evaluation of FileAppender filename until file is opened?

2020-02-04 Thread Doug Wegscheid
og4j/2.x/manual/appenders.html#FileAppender>. Ralph > On Feb 4, 2020, at 2:10 PM, Doug Wegscheid wrote: > > > I am trying to have log4j2 write log files with names mmdd-HHMMSS.log, > but not start writing the file until we have a good system time (>year 1986). > I

Defer evaluation of FileAppender filename until file is opened?

2020-02-04 Thread Doug Wegscheid
I am trying to have log4j2 write log files with names mmdd-HHMMSS.log, but not start writing the file until we have a good system time (>year 1986). I have an application running on a system that boots up, and takes a while to get the correct time; until that happens, the system thinks it