log4cpp类库
.
└── log4cpp
├── AUTHORS
├── CMakeLists.txt
├── COPYING
├── ChangeLog
├── INSTALL
├── Makefile.am
├── Makefile.in
├── NEWS
├── README
├── THANKS
├── TODO
├── aclocal.m4
├── autogen.sh
├── bcb5
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── bcb5.bpg
│ ├── bcb5.mak
│ ├── log4cpp
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── log4cpp.bpf
│ │ ├── log4cpp.bpr
│ │ └── log4cpp.mak
│ ├── testCategory
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── testCategory.bpf
│ │ ├── testCategory.bpr
│ │ └── testCategory.mak
│ ├── testConfig
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── testConfig.bpf
│ │ ├── testConfig.bpr
│ │ └── testConfig.mak
│ ├── testFixedContextCategory
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── testFixedContextCategory.bpf
│ │ ├── testFixedContextCategory.bpr
│ │ └── testFixedContextCategory.mak
│ ├── testNDC
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── testNDC.bpf
│ │ ├── testNDC.bpr
│ │ └── testNDC.mak
│ ├── testPattern
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── testPattern.bpf
│ │ ├── testPattern.bpr
│ │ └── testPattern.mak
│ └── testmain
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── testmain.bpf
│ ├── testmain.bpr
│ └── testmain.mak
├── config
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── config.guess
│ ├── config.sub
│ ├── depcomp
│ ├── install-sh
│ ├── ltmain.sh
│ ├── missing
│ └── mkinstalldirs
├── configure
├── configure.in
├── doc
│ ├── Doxyfile.in
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── html
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── default.css
│ │ ├── index.html
│ │ └── sflogo.png
│ └── mainPage.txt
├── include
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── config.h.in
│ ├── config.h.in~
│ └── log4cpp
│ ├── AbortAppender.hh
│ ├── Appender.hh
│ ├── AppenderSkeleton.hh
│ ├── AppendersFactory.hh
│ ├── BasicConfigurator.hh
│ ├── BasicLayout.hh
│ ├── BufferingAppender.hh
│ ├── Category.hh
│ ├── CategoryStream.hh
│ ├── Configurator.hh
│ ├── DailyRollingFileAppender.hh
│ ├── Export.hh
│ ├── FactoryParams.hh
│ ├── FileAppender.hh
│ ├── Filter.hh
│ ├── FixedContextCategory.hh
│ ├── HierarchyMaintainer.hh
│ ├── IdsaAppender.hh
│ ├── Layout.hh
│ ├── LayoutAppender.hh
│ ├── LayoutsFactory.hh
│ ├── LevelEvaluator.hh
│ ├── LoggingEvent.hh
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── Manipulator.hh
│ ├── NDC.hh
│ ├── NTEventLogAppender.hh
│ ├── OstreamAppender.hh
│ ├── PassThroughLayout.hh
│ ├── PatternLayout.hh
│ ├── Portability.hh
│ ├── Priority.hh
│ ├── PropertyConfigurator.hh
│ ├── RemoteSyslogAppender.hh
│ ├── RollingFileAppender.hh
│ ├── SimpleConfigurator.hh
│ ├── SimpleLayout.hh
│ ├── SmtpAppender.hh
│ ├── StringQueueAppender.hh
│ ├── SyslogAppender.hh
│ ├── TimeStamp.hh
│ ├── TriggeringEventEvaluator.hh
│ ├── TriggeringEventEvaluatorFactory.hh
│ ├── Win32DebugAppender.hh
│ ├── config-MinGW32.h
│ ├── config-openvms.h
│ ├── config-win32-stlport-boost.h
│ ├── config-win32.h
│ ├── convenience.h
│ └── threading
│ ├── BoostThreads.hh
│ ├── DummyThreads.hh
│ ├── MSThreads.hh
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── OmniThreads.hh
│ ├── PThreads.hh
│ └── Threading.hh
├── jamfile
├── log4cpp-config.in
├── log4cpp.cfg
├── log4cpp.m4
├── log4cpp.pc.in
├── log4cpp.spec.in
├── m4
│ ├── ACX_PTHREAD.m4
│ ├── AC_CREATE_PREFIX_CONFIG_H.m4
│ ├── AC_CXX_HAVE_SSTREAM.m4
│ ├── AC_CXX_NAMESPACES.m4
│ ├── AC_C_INT64_T.m4
│ ├── AC_FUNC_SNPRINTF.m4
│ ├── BB_CHECK_OMNITHREADS.m4
│ ├── BB_CHECK_PTHREADS.m4
│ ├── BB_ENABLE_DOXYGEN.m4
│ ├── BB_ENABLE_REMOTE_SYSLOG.m4
│ ├── BB_ENABLE_SMTP.m4
│ ├── PETI_PEDANTIC_GCC.m4
│ ├── ac_config_libconfig_in.m4
│ └── ac_config_pkgconfig_in.m4
├── msvc10
│ ├── NTEventLogCategories.mc
│ ├── log4cpp
│ │ └── log4cpp.vcxproj
│ ├── log4cppLIB
│ │ └── log4cppLIB.vcxproj
│ ├── log4cppRunnable
│ │ └── log4cppRunnable.vcxproj
│ ├── log4cpp_stlport_boost
│ │ ├── log4cpp_stlport_boost.vcproj
│ │ └── readme.txt
│ ├── msvc10.sln
│ ├── testCategory
│ │ └── testCategory.vcxproj
│ ├── testDLL
│ │ └── testDLL.vcxproj
│ ├── testDailyRollingFileAppender
│ │ ├── nesteddir
│ │ ├── testConfig.log4cpp.dailyroll.nt.properties
│ │ ├── testDailyRollingFileAppender.vcxproj
│ │ └── testDailyRollingFileAppender.vcxproj.user
│ ├── testMain
│ │ └── testMain.vcxproj
│ ├── testMain_stlport_boost
│ │ └── testMain_stlport_boost.vcproj
│ ├── testNDC
│ │ └── testNDC.vcxproj
│ ├── testNDC_stlport_boost
│ │ └── testNDC_stlport_boost.vcproj
│ ├── testNTEventLog
│ │ └── testNTEventLog.vcxproj
│ ├── testNTEventLog_stlport_boost
│ │ └── testNTEventLog_stlport_boost.vcproj
│ ├── testPattern
│ │ └── testPattern.vcxproj
│ ├── testPropConfig
│ │ └── testPropConfig.vcxproj
│ └── testRollingFileAppender
│ ├── testRollingFileAppender.vcxproj
│ └── testRollingFileAppender.vcxproj.user
├── msvc6
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── NTEventLogCategories.mc
│ ├── log4cpp
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ └── log4cpp.dsp
│ ├── log4cppDLL
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ ├── log4cppDLL.dsp
│ │ └── log4cppDLL.rc
│ ├── log4cppDLL_stlport_boost
│ │ ├── log4cppDLL_stlport_boost.dsp
│ │ ├── log4cppDLL_stlport_boost.rc
│ │ └── readme.txt
│ ├── msvc6.dsw
│ ├── testCategory
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ └── testCategory.dsp
│ ├── testDLL
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ └── testDLL.dsp
│ ├── testMain
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ └── testMain.dsp
│ ├── testMain_stlport_boost
│ │ └── testMain_stlport_boost.dsp
│ ├── testNDC
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ └── testNDC.dsp
│ ├── testNDC_stlport_boost
│ │ └── testNDC_stlport_boost.dsp
│ ├── testNTEventLog
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ └── testNTEventLog.dsp
│ ├── testNTEventLog_stlport_boost
│ │ └── testNTEventLog_stlport_boost.dsp
│ ├── testPattern
│ │ ├── Makefile.am
│ │ ├── Makefile.in
│ │ └── testPattern.dsp
│ └── testPropConfig
│ └── testPropConfig.dsp
├── msvc7
│ ├── Makefile.am
│ ├── NTEventLogCategories.mc
│ ├── log4cpp
│ │ └── log4cpp.vcproj
│ ├── log4cppLIB
│ │ ├── Makefile.am
│ │ └── log4cppLIB.vcproj
│ ├── log4cpp_stlport_boost
│ │ ├── log4cpp_stlport_boost.vcproj
│ │ └── readme.txt
│ ├── msvc7.sln
│ ├── testCategory
│ │ ├── Makefile.am
│ │ └── testCategory.vcproj
│ ├── testDLL
│ │ ├── Makefile.am
│ │ └── testDLL.vcproj
│ ├── testMain
│ │ ├── Makefile.am
│ │ └── testMain.vcproj
│ ├── testMain_stlport_boost
│ │ └── testMain_stlport_boost.vcproj
│ ├── testNDC
│ │ ├── Makefile.am
│ │ └── testNDC.vcproj
│ ├── testNDC_stlport_boost
│ │ └── testNDC_stlport_boost.vcproj
│ ├── testNTEventLog
│ │ ├── Makefile.am
│ │ └── testNTEventLog.vcproj
│ ├── testNTEventLog_stlport_boost
│ │ └── testNTEventLog_stlport_boost.vcproj
│ ├── testPattern
│ │ ├── Makefile.am
│ │ └── testPattern.vcproj
│ └── testPropConfig
│ └── testPropConfig.vcproj
├── openvms
│ ├── Makefile.am
│ └── Makefile.in
├── src
│ ├── AbortAppender.cpp
│ ├── Appender.cpp
│ ├── AppenderSkeleton.cpp
│ ├── AppendersFactory.cpp
│ ├── BasicConfigurator.cpp
│ ├── BasicLayout.cpp
│ ├── BufferingAppender.cpp
│ ├── Category.cpp
│ ├── CategoryStream.cpp
│ ├── Configurator.cpp
│ ├── DailyRollingFileAppender.cpp
│ ├── DllMain.cpp
│ ├── DummyThreads.cpp
│ ├── FactoryParams.cpp
│ ├── FileAppender.cpp
│ ├── Filter.cpp
│ ├── FixedContextCategory.cpp
│ ├── HierarchyMaintainer.cpp
│ ├── IdsaAppender.cpp
│ ├── LayoutAppender.cpp
│ ├── LayoutsFactory.cpp
│ ├── LevelEvaluator.cpp
│ ├── Localtime.cpp
│ ├── Localtime.hh
│ ├── LoggingEvent.cpp
│ ├── MSThreads.cpp
│ ├── Makefile.am
│ ├── Makefile.in
│ ├── Manipulator.cpp
│ ├── NDC.cpp
│ ├── NTEventLogAppender.cpp
│ ├── OmniThreads.cpp
│ ├── OstreamAppender.cpp
│ ├── PThreads.cpp
│ ├── PassThroughLayout.cpp
│ ├── PatternLayout.cpp
│ ├── PortabilityImpl.cpp
│ ├── PortabilityImpl.hh
│ ├── Priority.cpp
│ ├── Properties.cpp
│ ├── Properties.hh
│ ├── PropertyConfigurator.cpp
│ ├── PropertyConfiguratorImpl.cpp
│ ├── PropertyConfiguratorImpl.hh
│ ├── RemoteSyslogAppender.cpp
│ ├── RollingFileAppender.cpp
│ ├── SimpleConfigurator.cpp
│ ├── SimpleLayout.cpp
│ ├── SmtpAppender.cpp
│ ├── StringQueueAppender.cpp
│ ├── StringUtil.cpp
│ ├── StringUtil.hh
│ ├── SyslogAppender.cpp
│ ├── TimeStamp.cpp
│ ├── TriggeringEventEvaluatorFactory.cpp
│ ├── Win32DebugAppender.cpp
│ └── snprintf.c
└── tests
├── Clock.cpp
├── Clock.hh
├── Makefile.am
├── Makefile.in
├── NDCTest.hh
├── jamfile
├── log4cpp.init
├── log4cpp.nt.property
├── log4cpp.properties
├── log4cpp.property
├── nesteddir
├── testCategory.cpp
├── testConfig.cpp
├── testConfig.log4cpp.dailyroll.properties
├── testConfig.log4cpp.properties
├── testDLL.cpp
├── testDailyRollingFileAppender.cpp
├── testErrorCollision.cpp
├── testFilter.cpp
├── testFixedContextCategory.cpp
├── testNDC.cpp
├── testNDCMain.cpp
├── testNTEventLog.cpp
├── testPattern.cpp
├── testPriority.cpp
├── testPropConfig.cpp
├── testProperties.cpp
├── testProperties.properties
├── testPropertyConfig.cpp
├── testRollingFileAppender.cpp
├── test_convenience.cpp
├── testbench.cpp
└── testmain.cpp
66 directories, 327 files
评论