<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.apache.logging.log4cxx.user">
    <title>gmane.comp.apache.logging.log4cxx.user</title>
    <link>http://blog.gmane.org/gmane.comp.apache.logging.log4cxx.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3093"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3086"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3078"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3074"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3068"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3064"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3061"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3058"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3056"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3055"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3053"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3047"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3040"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3039"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3037"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3033"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3029"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3027"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3026"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3021"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3093">
    <title>Add, enable, disable log4cxx ConsoleAppender at runtime</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3093</link>
    <description>&lt;pre&gt;

How would I dynamically turn log4cxx logging to the console on and off in an application?

Goal here is to process a used choice, command line parm or GUI input or whatever. Thus in a hypothetical main loop:

if ( userWantsToStartConsoleLogger )
    ConsoleLogger( true );
if ( userWantsToStopConsoleLogger )
    ConsoleLogger( false );

My logging setup is:

#include &amp;lt;log4cxx/logger.h&amp;gt;
#include &amp;lt;log4cxx/propertyconfigurator.h&amp;gt;
#include &amp;lt;log4cxx/helpers/exception.h&amp;gt;

int main( int argc, char** argv )
{
   const log4cxx::LoggerPtr   logger;
   log4cxx::PropertyConfigurator::configure("./logs.config");
}

where ./logs.config looks like:

log4j.rootLogger=INFO, File

log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n

log4j.appender.File=org.apache.log4j.RollingFileAppender
log4j.appender.File.File=logs/system.logs
log4j.appender.File.MaxFileSize=1MB
log4j.appender.File.MaxBacku&lt;/pre&gt;</description>
    <dc:creator>Wesley J. Miller</dc:creator>
    <dc:date>2013-05-09T15:03:39</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3086">
    <title>RollingFileAppender Exception</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3086</link>
    <description>&lt;pre&gt;All,

I am getting the following error on one machine when running log4cxx, but
the appender works properly on my development VM.

log4cxx: Exception during rollover
log4cxx: No output stream or file set for the appender named
[appxNormalAppender].

Here is my current xml configuration for this.

&amp;lt;?xml version="1.0" encoding="UTF-8" ?&amp;gt;
  &amp;lt;log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/"&amp;gt;
  
  &amp;lt;appender name="appxConsoleAppender"
class="org.apache.log4j.ConsoleAppender"&amp;gt;
      
     &amp;lt;layout class="org.apache.log4j.PatternLayout"&amp;gt;
       
     &amp;lt;/layout&amp;gt;
  &amp;lt;/appender&amp;gt;

  
  &amp;lt;appender name="appxNormalAppender"
class="org.apache.log4j.RollingFileAppender"&amp;gt;
      
      
      
      
      &amp;lt;rollingPolicy
class="org.apache.log4j.rolling.TimeBasedRollingPolicy"&amp;gt;
            
      &amp;lt;/rollingPolicy&amp;gt;
      &amp;lt;layout class="org.apache.log4j.PatternLayout"&amp;gt;
            
      &amp;lt;/layout&amp;gt;
  &amp;lt;/appender&amp;gt;


  
  &amp;lt;appender name="appxAuditAppender" class="org.apache.log4j.FileAppender"&amp;gt;
      
      
      &amp;lt;layo&lt;/pre&gt;</description>
    <dc:creator>dolbydc</dc:creator>
    <dc:date>2013-05-06T23:01:13</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3078">
    <title>ConfigureAndWatch</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3078</link>
    <description>&lt;pre&gt;All,

I have recently inherited a project that is using log4cxx and one thing I
want to change is to dynamically change the logging level as the
application is running.  This looks like it should be possible
using DOMConfigurator::configureAndWatch("./log4cxx.xml", 1000); which
should check the log file every second to see if it has changed.  If i
change the logging level in the file and save it out it has no affect on my
logs, however, if I restart it takes the new settings.  I have attached to
the running application and see no watchdog thread that would be checking
if the file has been updated.  Any help would be appreciated

Donevan
&lt;/pre&gt;</description>
    <dc:creator>Donevan Dolby</dc:creator>
    <dc:date>2013-04-26T16:12:48</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3074">
    <title>link errors while building a project using static lib of log4cxx in VS 2010</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3074</link>
    <description>&lt;pre&gt;Hi All,

I am trying to build my application using static version of log4cxx in Visual Studio 2010.
I am able to build the log4cxx.lib.
Now, when i try to build my application, it gives 1000's of link errors as follows:
Error    795    error LNK2001: unresolved external symbol &amp;lt; at &amp;gt;__security_check_cookie&amp;lt; at &amp;gt;4    D:\ISAPI_dependencies\mgowda_ig_isapi93_sp1_patch_view\entecint\integration\WinIS\IdentityGuardFilter\IdentityGuardFilter\IdentityGuardFilter\log4cxx.lib(xmlsocketappender.obj)    IdentityGuardFilter

Error    722    error LNK2019: unresolved external symbol &amp;lt; at &amp;gt;__security_check_cookie&amp;lt; at &amp;gt;4 referenced in function _normal_prologTok    D:\ISAPI_dependencies\mgowda_ig_isapi93_sp1_patch_view\entecint\integration\WinIS\IdentityGuardFilter\IdentityGuardFilter\IdentityGuardFilter\log4cxx.lib(xmltok.obj)    IdentityGuardFilter

Error    1192    error LNK2001: unresolved external symbol __EH_epilog3    D:\ISAPI_dependencies\mgowda_ig_isapi93_sp1_patch_view\entecint\integration\WinIS\Ident&lt;/pre&gt;</description>
    <dc:creator>Madhu Gowda</dc:creator>
    <dc:date>2013-04-23T14:27:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3068">
    <title>Building libraries with libc++/clang</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3068</link>
    <description>&lt;pre&gt;Hi-

I tried building log4cxx with clang/libc++ a variety of ways with options
to ./configure and modifying makefile etc., but every time build says it
depends on libstdc++.

I used this command to no avali:
CXX=clang++ CXXFLLAGS="-std=c++11 -stdlib=libc++" ./configure


In order to avoid name mangling issues with my code which is built with, I
need to build log4cxx with libc++.

Can anyone please help me with instructions on how I can build log4cxx with
libc++/clang?

Thanks,
DG
&lt;/pre&gt;</description>
    <dc:creator>Damodar Nagapuram</dc:creator>
    <dc:date>2013-03-25T20:43:58</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3064">
    <title>Javadoc link dead on http://logging.apache.org/log4cxx/</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3064</link>
    <description>&lt;pre&gt;The API Documentation link on the main log4cxx site, which points to
http://logging.apache.org/log4cxx/apidocs/index.html, is dead.

Anyone out there with admin access that can fix it?

- Rhys

&lt;/pre&gt;</description>
    <dc:creator>Rhys Ulerich</dc:creator>
    <dc:date>2013-02-26T16:42:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3061">
    <title>Sharing the same log file from concurrent two processes</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3061</link>
    <description>&lt;pre&gt;Hello everybody,
I have a question about logging with log4cxx from different process.
I have two different .exe that link the same log4cxx dll.
I would like that both the exe uses the same configuration file and so
write in the same log file.
I was able to get this result, however I think that I did something wrong.

I'm generating two .exe by building the attached cpp code, and both load
the conf file in attachment.

When I run the exes, it seems that everything works fine, and the log file
example.log is fine.
However I don't understand if my approach is fine.
That is, how it is possible that the two processes don't access at the same
time the log file generating by this way a conflict and corrupting it?

I think that I should generate a logging exe that receives the messages
from other processes and that then, from a single exe, I should access the
log.
Is there any suggestion? I'm a bit confused, any link/idea/feedback will be
appreciated
&lt;/pre&gt;</description>
    <dc:creator>Giovanni Parodi</dc:creator>
    <dc:date>2012-11-29T14:33:32</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3058">
    <title>Issue with C++ code running inside Java 7 JVM</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3058</link>
    <description>&lt;pre&gt;Has anyone seen any issues related to running C++ code inside a Java 7 JVM?

Our application is a C++ DLL that is loaded from within a Java application. We just upgraded to Java 7, and are now 
seeing a strange problem with the console logging. There is a space inserted between every character that is 
output.

Example from the initialization of the logging from an xml config file:

 l o g 4 c x x :   r o o t   l e v e l   s e t   t o   I N F O
 l o g 4 c x x :   C l a s s   n a m e :   [ o r g . a p a c h e . l o g 4 j . r o l l i n g . R o l l i n g F i l e A p p e n d e r ]

This was not happening when we were running the same DLL within a Java 6 JVM.

File based logging appears to be fine.

Any help would be much appreciated.

Thanks,
Andy

&lt;/pre&gt;</description>
    <dc:creator>log4cxx</dc:creator>
    <dc:date>2012-11-15T21:15:03</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3056">
    <title>multiples instances of log4cxx</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3056</link>
    <description>&lt;pre&gt;Hi all,

I have a DLL (with vs2008) that uses log4cxx. All is working ok
reading configuration file log4AI.properties.

I have a process that loads this DLL and uses log4cxx too. This
process is configured to read a properties file log4jSM.properties.
When the process starts, the firsts traces are correctly logged into
the correct file (log4SM.txt).

After the process loads the DLL, all traces in the process are not
going to the correct file and all goes to the logAI.txt (using
log4AI.properties).

Is log4cxx a singleton? could I have different instances of log4cxx in
the same process?


Regards

&lt;/pre&gt;</description>
    <dc:creator>Oscar Pernas</dc:creator>
    <dc:date>2012-10-24T14:14:15</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3055">
    <title>AUTO: Chhavi Agarwal is out of the office (returning 08/13/2012)</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3055</link>
    <description>&lt;pre&gt;
I am out of the office until 08/13/2012.

On Vacation.
Please contact Imran.kazi&amp;lt; at &amp;gt;in.ibm.com ( Imranuddin W Kazi )l for any project
related queries.
If urgent call me 9740335000


Note: This is an automated response to your message  "Re: failed to compile
log4cxx in Ubuntu12. error is apr" sent on 27/07/2012 16:18:50.

This is the only notification you will receive while this person is away.


&lt;/pre&gt;</description>
    <dc:creator>Chhavi Agarwal</dc:creator>
    <dc:date>2012-07-27T15:53:53</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3053">
    <title>failed to compile log4cxx in Ubuntu12. error is apr</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3053</link>
    <description>&lt;pre&gt;Hi,

Follow instruction with this link:
http://www.yolinux.com/TUTORIALS/Log4cxx.html
include this   - apt-get install libapr1 libaprutil1

When run './configure --prefix=/usr'
i am getting error:
configure: error: APR could not be located. Please use the --with-apr option.

any advice please.

Thank you


&lt;/pre&gt;</description>
    <dc:creator>avihai</dc:creator>
    <dc:date>2012-07-27T09:33:29</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3047">
    <title>Log4cxx and memory read problem while program is ending</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3047</link>
    <description>&lt;pre&gt;Hi All,
I got very simple program in C++ which uses log4cxx for logging. I
have successfuly build log4cxx in VS 2008 and linked log4cxx.lib and
log4cxx.dll to my project. I have problem while my program is closing.
I received error message:

Unhandled exception at 0x10171754 in Log4cxxTest.exe: 0xC0000005:
Access violation reading location 0xfeeefefe.

The memory couldn't to be read.

Is there any solution how can I clean log4cxx correctly when my
program is ending? I closed my app by CTRL+C.


The code is very simple:


#include &amp;lt;log4cxx/logger.h&amp;gt;
#include &amp;lt;log4cxx/xml/domconfigurator.h&amp;gt;
#include &amp;lt;log4cxx/basicconfigurator.h&amp;gt;
#include &amp;lt;log4cxx/helpers/exception.h&amp;gt;

using namespace log4cxx;
using namespace log4cxx::xml;
using namespace log4cxx::helpers;


LoggerPtr logger(Logger::getLogger("Log4cxxTest"));

BOOL CtrlHandler( DWORD fdwCtrlType )
{
switch( fdwCtrlType )
{
// Handle the CTRL-C signal.
case CTRL_C_EVENT:
// CTRL-CLOSE: confirm that the user wants to exit.
case CTRL_CLOSE_EVENT:
// Pass&lt;/pre&gt;</description>
    <dc:creator>Vladislav Krejcirik</dc:creator>
    <dc:date>2012-05-25T07:11:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3040">
    <title>log4cxx WinCE support</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3040</link>
    <description>&lt;pre&gt;Hi,

I saw an issue on log4cxx ASF JIRA (
https://issues.apache.org/jira/browse/LOGCXX-147) which had description
"Most of the changes necessary to get log4cxx to run under WinCE are
changes to APR and APR-util which will be filed as bugs against them and
may be patched into APR in later commits." I searched through the web and
log4cxx and APR mailing lists, but could not find any useful info.

Does current version of log4cxx support WinCE?

&lt;/pre&gt;</description>
    <dc:creator>Hamidreza Hosseini</dc:creator>
    <dc:date>2012-05-13T12:29:36</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3039">
    <title>Squelching NDC output?</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3039</link>
    <description>&lt;pre&gt;Hi,

I have a pattern layout that includes "&amp;lt;%x&amp;gt;" because my app has 20 threaded
objects I want to keep track of. Unfortunately, log4cxx prints "&amp;lt;null&amp;gt;" for
all the times when there is no NDC.

Is there a pattern specifier that will make it just *be* null instead of
printing "null"?  If not, could someone direct me to the part of the code I
can look for how to implement it?

Thanks,
Chris
&lt;/pre&gt;</description>
    <dc:creator>Christopher Nagel</dc:creator>
    <dc:date>2012-05-09T22:02:18</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3037">
    <title>Trapping printf?</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3037</link>
    <description>&lt;pre&gt;Hi,

I've just added log4cxx to a small codebase but a lot of its logging is
done by (binary) libraries using printf, cout, cerr, etc.  Is there a way
to trap these console outputs in my log file with an appender?

One way I am considering doing it is configure a console appender for the
log4cxx calls and then just redirect everything to the file.  This doesn't
get me a rollingfileappender though...unless... Can an appender append to
an appender?

What would you do?

Thanks,
Chris
&lt;/pre&gt;</description>
    <dc:creator>Christopher Nagel</dc:creator>
    <dc:date>2012-05-09T18:07:48</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3033">
    <title>Problems installing log4cxx v 0.10.0 using Microsoft Visual Studio 2010 Express C++ edition</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3033</link>
    <description>&lt;pre&gt;Hi,

I am running on a windows 7 host running VS2010 express c++ edition.
I've followed the directions per the log4cxx directions ( ) including
downloading apr-1.4.6 and apr-util-1.4.1 and modifying the .hw files,
however, when I try to load the log4cxx.dsw solution and convert it to
the current VS, I receive an error trying to build apr.dsp and a bunch
of other dependent .dsp files. 

Specifically, what I am seeing is:
The Project file 'C:...projects\apr-util\xml\expat\lib\xml.dsp' cannot
be loaded. Do you want to remove the unloadable project from the
solution?


Then in the output box in VS  the following is shown:
C:\apache-log4cxx-0.10.0\apr\apr.dsp : error  : Project upgrade failed.

C:\apache-log4cxx-0.10.0\apr-util\xml\expat\lib\xml.dsp : error  :
Project upgrade failed.

C:\apache-log4cxx-0.10.0\apr-util\aprutil.dsp : error  : Project upgrade
failed.

C:\apache-log4cxx-0.10.0\apache-log4cxx-0.10.0\projects\log4cxx.dsp :
error  : Project upgrade failed.


I appreciate any help you can provide me in t&lt;/pre&gt;</description>
    <dc:creator>Michael.Garcia&lt; at &gt;gdc4s.com</dc:creator>
    <dc:date>2012-05-02T23:24:50</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3029">
    <title>Usage in embedded Systems</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3029</link>
    <description>&lt;pre&gt;Hi,

is log4cxx suitable for usage in embedded systems?

Regards,
Sven Müller.




&lt;/pre&gt;</description>
    <dc:creator>Sven Müller</dc:creator>
    <dc:date>2012-04-20T14:19:07</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3027">
    <title>AUTO: Chhavi Agarwal is out of the office (returning 04/16/2012)</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3027</link>
    <description>&lt;pre&gt;
I am out of the office until 04/16/2012.

On Vacation.
Please contact Imran.kazi&amp;lt; at &amp;gt;in.ibm.com ( Imranuddin W Kazi )l for any project
related queries.
If urgent call me 9740335000


Note: This is an automated response to your message  "How to set
LockingModel in Log4cxx (if possible)" sent on 12/4/12 3:14:20.

This is the only notification you will receive while this person is away.


&lt;/pre&gt;</description>
    <dc:creator>Chhavi Agarwal</dc:creator>
    <dc:date>2012-04-11T22:30:46</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3026">
    <title>How to set LockingModel in Log4cxx (if possible)</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3026</link>
    <description>&lt;pre&gt;Is LockingModel implemented for log4cxx (0.10.0) as it is for Log4Net ?

 

For example, in RollingFileAppender

 

  &amp;lt;lockingModel type="log4net.Appender.FileAppender+InterProcessLock" /&amp;gt;

or

  &amp;lt;lockingModel type="log4net.Appender.FileAppender+MinimalLock" /&amp;gt;

 

It doesn't appear to be working for me. Maybe I have something
configured incorrectly but I would like to know if the feature is even
enabled before I waste too much time getting it to work. 

 

The objective is to permit viewing of an active log file (on Windows)
using tools other than Notepad.  WordPad and other editors are failing
to open the file because they file is in use. Notepad allows the file to
be viewed without any error.

 

If this is not supported in Log4cxx 0.10.0 what are the alternatives?
E.g. suggested code changes to log4cxx itself?  A later release of
log4cxx, although I have not found one.

 

Thanks



"Misys" is the trade name for Misys plc (registered in England and Wales). Registration Number: 01360027. Registered office&lt;/pre&gt;</description>
    <dc:creator>Millard, Andy</dc:creator>
    <dc:date>2012-04-11T21:44:20</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3021">
    <title>Log4cxx licensing</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3021</link>
    <description>&lt;pre&gt;Hi,

At Tomra we have been happily using log4j as a logging framework for our Java applications, and we now consider using log4cxx for our commercial (closed source) C++ applications. At first glance, that seems ok under the Apache 2 license, but when I inspected the dependencies of log4cxx I found that it depends on the Berkeley DB (libdb4.8) which is licensed under the Sleepycat License. This is a dual license that does not permit use in closed source applications unless we buy a commercial Berkley DB license from Oracle. I was a bit surprised by this finding, since it does not fit well with the permissive Apache 2 license.

I tested log4cxx on Ubuntu 10.4, Debian package liblog4cxx10 version 0.10.0-1.1build1, and looked for dependencies with:
$ ldd /usr/lib/liblog4cxx.so.10
        linux-gate.so.1 =&amp;gt;  (0x00228000)
        libaprutil-1.so.0 =&amp;gt; /usr/lib/libaprutil-1.so.0 (0x00a0f000)
        libdb-4.8.so =&amp;gt; /usr/lib/libdb-4.8.so (0x00229000)
        libapr-1.so.0 =&amp;gt; /usr/lib/libapr-1.so.0 (0x00f5e000)
     &lt;/pre&gt;</description>
    <dc:creator>Johnny Njåstad</dc:creator>
    <dc:date>2012-03-19T09:49:55</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3017">
    <title>AUTO: Chhavi Agarwal is out of the office (returning 02/27/2012)</title>
    <link>http://comments.gmane.org/gmane.comp.apache.logging.log4cxx.user/3017</link>
    <description>&lt;pre&gt;
I am out of the office until 02/27/2012.

On Vacation.
Please contact Imran.kazi&amp;lt; at &amp;gt;in.ibm.com ( Imranuddin W Kazi )l for any project
related queries.
If urgent call me 9740335000


Note: This is an automated response to your message  "Concurrent access"
sent on 22/2/12 21:25:40.

This is the only notification you will receive while this person is away.


&lt;/pre&gt;</description>
    <dc:creator>Chhavi Agarwal</dc:creator>
    <dc:date>2012-02-22T16:31:35</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.apache.logging.log4cxx.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.apache.logging.log4cxx.user</link>
  </textinput>
</rdf:RDF>
