-
Notifications
You must be signed in to change notification settings - Fork 108
/
ChangeLog
3827 lines (2542 loc) · 115 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2017-07-13 08:48 sanchouss_
* bug 146;
* bug 147 - Being prepared for Removing Deprecated Exception Specifications from C++17
2016-11-11 18:48 sanchouss_
* Numerous fixes;
* Added .target property for the ConsoleAppender to allow printing to STDERR
* Added method Category::shutdownForced(). It releases more memory than shutdown() by deleting all appenders.
Category::shutdownForced() may be invoked several times, not only at the end of program.
2015-03-28 18:48 sanchouss_
* Added DailyRollingFileAppender.cpp
2013-12-05 18:48 sanchouss_
* Fixed bug#137. Adjusted git attributes for *.dsp files (bug #136)
2013-11-27 18:48 sanchouss_
* Migrated from cvs to git scm. Url is ssh://[email protected]/p/log4cpp/codegit
2012-10-15 18:48 sanchouss_
* msvc10/ Converted solution for building from MSVC 2010 with small adjustments. Output is targeted
into building directory instead of system32 dir (due to windows UAC restrictions)
* src/RollingFileAppender.cpp - resolved ambiguity of log10
2012-10-10 16:45 sanchouss_
* include/log4cpp/NDC.hh, src/NDC.cpp: small optimization to avoid invokation of thread-specific
routines each time when a string is constructed from a log event in case if NDC feature is never used.
Tests show slight improvement when pthread_setspecific() is not called each time event is logged.
2012-10-10 15:12 sanchouss_
* include/log4cpp/RollingFileAppender.hh, src/RollingFileAppender.cpp:
[feature] number history files so that they can be lexicographically ordered by name properly.
Width of file extension is made constant and depends on count of backup files (i.e.,
for number of 15 backup files, extensions will be .01, .02, ..., .14, .15)
2007-09-03 12:25 waffel
* configure.in: [feature] changed version to 1.0
2007-09-03 11:15 waffel
* include/log4cpp/Makefile.am: [intern] added forgotten header
file. make distcheck should work now
2007-08-28 18:24 dark--angel
* tests/testbench.cpp: Fix missed ENDLINE
2007-08-27 21:26 dark--angel
* include/log4cpp/CategoryStream.hh, src/CategoryStream.cpp,
tests/testCategory.cpp, tests/testConfig.cpp, tests/testDLL.cpp,
tests/testFixedContextCategory.cpp, tests/testPropertyConfig.cpp,
tests/testmain.cpp: Removed CategoryStream end of line enum Fix
eol and left manipulators
2007-08-27 21:03 dark--angel
* include/log4cpp/Category.hh: ownAppenders must be virtual
2007-08-27 20:28 dark--angel
* tests/jamfile: Added missed test to bjam file
2007-08-27 20:27 dark--angel
* src/PatternLayout.cpp: Fixed %m formater
2007-08-27 18:47 dark--angel
* src/BufferingAppender.cpp: Fix for Solaris 10
2007-08-25 11:42 dark--angel
* Makefile.am, log4cpp.spec.in, src/Makefile.am: Scott Cantor
Solaris 10 fixes
2007-08-24 07:51 dark--angel
* m4/ACX_PTHREAD.m4: Fix thread tests for Solaris
2007-08-20 11:55 dark--angel
* configure.in: Scott Cantor pointed out some inconsistenst between
his configure script and my previous changes. Fixed.
2007-08-19 12:58 dark--angel
* m4/ACX_PTHREAD.m4, configure.in: [no log message]
2007-08-19 12:36 dark--angel
* configure.in: Fixed pthread. See
https://mail.internet2.edu/wws/arc/shibboleth-users/2007-08/msg00077.html
2007-08-19 12:30 dark--angel
* src/Makefile.am: Added localtime.cpp
2007-08-19 12:24 dark--angel
* configure.in: Added localtime_r identify macros
2007-08-19 12:20 dark--angel
* include/log4cpp/config-MinGW32.h,
include/log4cpp/config-win32-stlport-boost.h,
include/log4cpp/config-win32.h, src/Localtime.cpp,
src/Localtime.hh, src/PatternLayout.cpp: Use localtime_r instead
of localtime
2007-08-02 15:20 dark--angel
* src/Appender.cpp: Fix wierd static initialization bug
2007-07-07 18:19 dark--angel
* include/log4cpp/: Export.hh, TriggeringEventEvaluator.hh: Fix
virtual destructor problem Fix exports for gcc when
LOG4CPP_HAS_DLL defined
2007-07-05 20:10 dark--angel
* tests/jamfile: Enabled all tests
2007-07-05 20:08 dark--angel
* jamfile, tests/jamfile: Added Boost.Build build files.
2007-07-05 20:06 dark--angel
* include/log4cpp/Category.hh, include/log4cpp/convenience.h,
tests/test_convenience.cpp: Added some convenience macroses
2007-07-03 19:19 dark--angel
* include/log4cpp/: CategoryStream.hh, Portability.hh,
config-MinGW32.h, config-win32-stlport-boost.h, config-win32.h:
Added support for MinGW32
2007-07-03 19:15 dark--angel
* src/AppendersFactory.cpp: asio expected in boost 1.35
2007-07-03 19:12 dark--angel
* src/SmtpAppender.cpp: asio expected in boost 1.35
2007-07-03 12:30 dark--angel
* include/log4cpp/SmtpAppender.hh, src/SmtpAppender.cpp: asio will
be in boost 1.35
2007-07-03 11:17 dark--angel
* include/log4cpp/config-win32.h, src/MSThreads.cpp,
src/PatternLayout.cpp, src/RemoteSyslogAppender.cpp,
src/RollingFileAppender.cpp, src/SimpleConfigurator.cpp: fixes
for Borland Builder 5.6.4
2007-06-27 13:00 waffel
* include/log4cpp/FactoryParams.hh: [bug] fixed build problem under
linux
2006-10-16 19:43 dark--angel
* msvc7/: log4cpp/log4cpp.vcproj, log4cppLIB/log4cppLIB.vcproj:
added boost variants to build
2006-10-07 08:06 dark--angel
* src/AppendersFactory.cpp: Fix: Ifdef SmtpAppender registration
code
2006-10-07 07:43 dark--angel
* msvc7/: log4cpp/log4cpp.vcproj, log4cppLIB/log4cppLIB.vcproj:
Added SmtpAppender
2006-10-07 07:32 dark--angel
* include/log4cpp/SmtpAppender.hh, src/SmtpAppender.cpp: Added
SmtpAppender
2006-10-07 07:30 dark--angel
* include/log4cpp/HierarchyMaintainer.hh,
src/HierarchyMaintainer.cpp: Added shutdown hooks to support
threaded appenders on application shutdown
2006-10-07 07:27 dark--angel
* include/log4cpp/FactoryParams.hh: Fix std::string converter
2006-10-07 07:26 dark--angel
* src/AppendersFactory.cpp: Change appender names in registration
part
2006-09-30 11:44 dark--angel
* include/log4cpp/Makefile.am, src/Makefile.am: [no log message]
2006-09-30 10:26 dark--angel
* include/log4cpp/FactoryParams.hh: [no log message]
2006-09-30 10:11 dark--angel
* include/log4cpp/Makefile.am, src/Makefile.am: [no log message]
2006-09-30 10:01 dark--angel
* configure.in: Remove debian line
2006-09-30 09:51 dark--angel
* src/PatternLayout.cpp: [no log message]
2006-09-30 09:47 dark--angel
* src/: IdsaAppender.cpp, SyslogAppender.cpp: [no log message]
2006-09-30 08:03 dark--angel
* include/log4cpp/AppendersFactory.hh,
include/log4cpp/BufferingAppender.hh,
include/log4cpp/FactoryParams.hh,
include/log4cpp/LayoutsFactory.hh,
include/log4cpp/LevelEvaluator.hh,
include/log4cpp/PassThroughLayout.hh,
include/log4cpp/TriggeringEventEvaluator.hh,
include/log4cpp/TriggeringEventEvaluatorFactory.hh,
msvc7/log4cpp/log4cpp.vcproj, msvc7/log4cppLIB/log4cppLIB.vcproj,
src/AbortAppender.cpp, src/AppendersFactory.cpp,
src/BasicLayout.cpp, src/BufferingAppender.cpp,
src/FactoryParams.cpp, src/FileAppender.cpp,
src/IdsaAppender.cpp, src/LayoutsFactory.cpp,
src/LevelEvaluator.cpp, src/NTEventLogAppender.cpp,
src/PassThroughLayout.cpp, src/PatternLayout.cpp,
src/RemoteSyslogAppender.cpp, src/RollingFileAppender.cpp,
src/SimpleLayout.cpp, src/SyslogAppender.cpp,
src/TriggeringEventEvaluatorFactory.cpp,
src/Win32DebugAppender.cpp: Added Factories support. Added new
PassThoughtLayout and BufferingAppender. Added triggering
facility for BufferingAppender
2006-03-11 13:19 waffel
* Makefile.am, include/log4cpp/Manipulator.hh: [intern] some
cleanups
2006-01-15 14:08 francisandre
* include/log4cpp/CategoryStream.hh: Add eol & endline enum to
comply more on coding style as the iostream endl
2005-10-19 12:51 waffel
* msvc7/log4cpp/log4cpp.vcproj: [intern] added missing additional
include directory entry
2005-10-17 10:03 waffel
* include/log4cpp/Priority.hh, src/Priority.cpp: [intern] changed
wron LF to unix LF back
2005-10-15 19:24 francisandre
* msvc7/log4cpp/log4cpp.vcproj: Put path into " " so that path with
embedded spaces could work too
2005-10-15 19:10 francisandre
* msvc7/log4cpp/log4cpp.vcproj: Change RC.exe to rc.exe so that all
commands are in lower case
2005-10-07 09:12 waffel
* msvc6/log4cpp/log4cpp.dsp: [bug] added forgotten
AbortAppender.cpp entry
2005-10-05 19:11 waffel
* msvc6/: msvc6.dsw, log4cpp/log4cpp.dsp,
log4cppDLL/log4cppDLL.dsp, testCategory/testCategory.dsp,
testDLL/testDLL.dsp, testMain/testMain.dsp, testNDC/testNDC.dsp,
testNTEventLog/testNTEventLog.dsp, testPattern/testPattern.dsp,
testPropConfig/testPropConfig.dsp: [bug] changed dos2unix file
content and applied patch from Amanjit Gill
2005-09-28 17:27 waffel
* include/log4cpp/Priority.hh, msvc6/msvc6.dsw,
msvc6/log4cpp/log4cpp.dsp, msvc6/log4cppDLL/log4cppDLL.dsp,
msvc6/testCategory/testCategory.dsp, msvc6/testDLL/testDLL.dsp,
msvc6/testMain/testMain.dsp, msvc6/testNDC/testNDC.dsp,
msvc6/testNTEventLog/testNTEventLog.dsp,
msvc6/testPattern/testPattern.dsp, src/Priority.cpp: [intern]
fixed msvc6 build system
2005-07-29 13:11 waffel
* include/log4cpp/Makefile.am: [bug] added missing header
2005-07-29 13:11 waffel
* configure.in: [intern] new version string
2005-06-05 18:34 francisandre
* msvc7/.cvsignore: [no log message]
2005-06-05 18:18 francisandre
* msvc7/log4cpp/.cvsignore: [no log message]
2005-06-05 18:16 francisandre
* msvc7/log4cpp/log4cpp.vcproj: Surround file.mc path by quotes for
handling embedded space.
2005-06-01 21:08 waffel
* include/log4cpp/CategoryStream.hh: fixed template bug on linux
2005-06-01 21:07 waffel
* include/log4cpp/Manipulator.hh: added newline at end of file
2005-06-01 20:34 waffel
* ChangeLog: changes for release 0.3.5rc2
2005-04-28 11:29 francisandre
* src/CategoryStream.cpp: Fix CategoryStream::eol(CategoryStream&)
2005-04-28 10:38 francisandre
* src/CategoryStream.cpp, include/log4cpp/CategoryStream.hh,
include/log4cpp/Manipulator.hh: Fix LOG4CPP_IMPORT for using
log4cpp as dll Add missing CategoryStream::operator<<;
2005-04-28 09:49 francisandre
* msvc7/log4cpp/log4cpp.vcproj: Add CategoryStream manipulators:
width & left so that one can write categorystream << width(10) <<
left;
2005-04-28 09:44 francisandre
* include/log4cpp/CategoryStream.hh, src/CategoryStream.cpp: Add
CategoryStream manipulators: eol & left so that one can write
categorystream << width(10) << left << "log4cpp" << eol;
2005-04-28 09:42 francisandre
* src/Manipulator.cpp, include/log4cpp/Manipulator.hh: Add
CategoryStream manipulators: width & left so that one can write
categorystream << width(10) << left;
2005-04-23 20:03 francisandre
* msvc7/testPropConfig/log4cpp.property: no message
2005-04-12 22:28 francisandre
* include/log4cpp/: config-win32-stlport-boost.h, config-win32.h,
config-openvms.h: Updating version to 0.3.5
2005-04-12 22:21 francisandre
* msvc7/: testCategory/testCategory.vcproj, testNDC/testNDC.vcproj,
testPropConfig/testPropConfig.vcproj: no message
2005-04-12 22:19 francisandre
* msvc7/log4cpp/log4cpp.vcproj: [no log message]
2005-04-12 22:19 francisandre
* include/log4cpp/Priority.hh: set MESSAGE_SIZE to 8 instead of 10
2005-04-12 22:18 francisandre
* src/CategoryStream.cpp, include/log4cpp/CategoryStream.hh: Add
CategoryStream::width() member Add alias of EOL, eol as ENDOFLINE
2005-04-12 22:15 francisandre
* src/SimpleLayout.cpp: Output priority literal as a MESSAGE_SIZE
message, left alligned
2005-04-12 21:16 francisandre
* src/SimpleLayout.cpp: Output priority literal as a MESSAGE_SIZE
message, left alligned
2005-04-12 21:13 francisandre
* src/RollingFileAppender.cpp: Avoid warning
2005-04-12 21:13 francisandre
* src/RemoteSyslogAppender.cpp: use size_t instead of int
2005-04-12 21:12 francisandre
* src/Priority.cpp: Align code
2005-04-12 20:01 francisandre
* include/log4cpp/CategoryStream.hh: Add CategoryStream::width()
member Add alias of EOL, eol as ENDOFLINE
2005-04-12 20:00 francisandre
* include/log4cpp/Priority.hh: add constant that defines the
maximum size of the Priority message so that one gets a clean
alignment on ostream
2005-04-12 19:58 francisandre
* include/log4cpp/config-win32.h: disable warning 4275 for vc7.1
2005-04-12 19:58 francisandre
* include/log4cpp/NDC.hh: use size_t instead of int for getDepth
2005-04-12 19:57 francisandre
* include/log4cpp/RemoteSyslogAppender.hh: use correct type SOCKET
for win32
2005-04-12 19:21 francisandre
* src/Priority.cpp: Align literals for a better visibility
2005-04-12 19:16 francisandre
* src/TimeStamp.cpp: Add LOG4CPP_EXPORT for win32 dll
2005-04-12 17:03 francisandre
* msvc7/: testPropConfig/testPropConfig.vcproj, msvc7.sln: Fix path
of starting directory
2005-04-12 16:56 francisandre
* tests/log4cpp.property: Fix type: JDEBUG to DEBUG
2005-04-12 16:49 francisandre
* src/: NDC.cpp, PatternLayout.cpp, RollingFileAppender.cpp,
snprintf.c: Changing return type of getDepth from int to size_t
fix various size_t/int discrepancies
2005-04-12 16:46 francisandre
* msvc7/log4cpp/log4cpp.vcproj: no message
2005-04-12 16:15 francisandre
* msvc7/: testNDC/Makefile.am, testNDC/testNDC.vcproj, Makefile.am,
NTEventLogCategories.mc, msvc7.sln, log4cppLIB/Makefile.am,
log4cppLIB/log4cppLIB.vcproj,
log4cpp_stlport_boost/log4cpp_stlport_boost.vcproj,
log4cpp_stlport_boost/readme.txt, testDLL/Makefile.am,
testDLL/testDLL.vcproj, testMain/Makefile.am,
testMain/testMain.vcproj,
testMain_stlport_boost/testMain_stlport_boost.vcproj,
testNDC_stlport_boost/testNDC_stlport_boost.vcproj,
testPattern/Makefile.am, testPattern/testPattern.vcproj,
testPropConfig/log4cpp.property,
testPropConfig/testPropConfig.vcproj, log4cpp/log4cpp.vcproj,
testCategory/Makefile.am, testCategory/testCategory.vcproj,
testNTEventLog/Makefile.am, testNTEventLog/testNTEventLog.vcproj,
testNTEventLog_stlport_boost/testNTEventLog_stlport_boost.vcproj:
partial port of log4cpp to MSVC 7.1 (except stl/boost)
2005-03-24 10:34 bastiaan
* ChangeLog, log4cpp.m4, m4/BB_ENABLE_DOXYGEN.m4: fixed
'underquoted definition' warning
2004-01-27 11:27 bastiaan
* m4/ac_config_pkgconfig_in.m4: added
2004-01-27 11:24 bastiaan
* Makefile.am, configure.in, log4cpp-config.in, log4cpp.pc.in,
include/log4cpp/Filter.hh, m4/CREATE_GENERIC_CONFIG.m4,
m4/ac_config_libconfig_in.m4: use ac_config_libconfig_in macro.
2003-06-23 14:54 bastiaan
* ChangeLog, src/PatternLayout.cpp: added missing '%t' thread name
specifier (support request #753974)
2003-05-23 00:48 bastiaan
* ChangeLog: added support for configuring LocalSyslogAppenders.
2003-05-23 00:45 bastiaan
* src/PropertyConfiguratorImpl.cpp: added support for configuring
LocalSyslogAppenders.
2003-05-18 22:21 bastiaan
* ChangeLog: fix for bug #648341
2003-05-10 01:53 bastiaan
* tests/Makefile.am: added testNTEventLog.cpp to EXTRA_DIST (bug
#718941)
2003-05-10 01:43 bastiaan
* tests/testmain.cpp: have main() return 0; (bug #718941)
2003-05-10 01:26 bastiaan
* src/PatternLayout.cpp: correct type of _minWidth and _maxWidth
2003-05-10 01:24 bastiaan
* tests/testPattern.cpp: added test for bug #688715.
2003-05-10 01:04 bastiaan
* src/PatternLayout.cpp: fix bounds problem on logging messages
(bug #688715)
2003-05-10 00:16 bastiaan
* include/log4cpp/PropertyConfigurator.hh: ConversionPattern
instead of pattern (patch #692193).
2003-05-09 11:25 bastiaan
* ChangeLog, Makefile.am, configure.in, log4cpp-config.in,
log4cpp.pc.in, log4cpp.spec.in: added pkgconfig file
2003-05-09 00:52 bastiaan
* ChangeLog, Makefile.am, NEWS, configure.in,
include/log4cpp/Portability.hh: 0.2.8 release
2003-05-09 00:48 bastiaan
* tests/: testFilter.cpp, testPriority.cpp, testbench.cpp: added
missing 'std::' specifiers. (bug #530332)
2003-05-09 00:48 bastiaan
* tests/Clock.cpp, log4cpp.spec.in: updated from -devel branch.
2003-05-09 00:31 bastiaan
* src/SyslogAppender.cpp: fix format string bug. (bug #527475)
2003-04-08 00:33 bastiaan
* ChangeLog, log4cpp.spec.in: added log4cpp.m4 to -devel package.
2003-03-26 22:48 bastiaan
* src/HierarchyMaintainer.cpp: don't create a default appender for
the root category. (bug #648341)
2003-03-26 22:23 bastiaan
* ChangeLog: fixed bug #710164
2003-03-26 22:21 bastiaan
* src/StringUtil.cpp: added \r and \n to whitespace characters.
2003-03-26 22:21 bastiaan
* src/Properties.cpp: trim property keys and values. Fixes bug
#710164.
2003-03-23 22:28 bastiaan
* doc/html/index.html: added link to SuSE RPMS built by Pascal
Bleser
2003-03-18 13:49 dresnick
* include/log4cpp/config-win32-stlport-boost.h: Now using int64_t
defined in boost.
2003-03-11 10:08 dresnick
* include/log4cpp/: config-win32-stlport-boost.h, config-win32.h:
Replaced including winsock2.h with the definition of u_long.
2003-03-10 10:05 dresnick
* ChangeLog: Added boost threads and build for STLport (for MSVC
6).
2003-03-10 10:04 dresnick
* msvc6/log4cppDLL/log4cppDLL.dsp: Added abort appender.
2003-03-10 10:02 dresnick
* src/PortabilityImpl.hh: Added abort to std:: namespace wrapping.
2003-03-10 10:02 dresnick
* msvc6/log4cppDLL/log4cppDLL.rc: Updated version number.
2003-03-10 10:02 dresnick
* include/log4cpp/config-win32.h: Added definition for in_addr_t
2003-03-10 10:01 dresnick
* include/log4cpp/PatternLayout.hh: Doc fix.
2003-03-10 09:58 dresnick
* include/log4cpp/NTEventLogAppender.hh,
include/log4cpp/Portability.hh,
include/log4cpp/config-win32-stlport-boost.h,
include/log4cpp/threading/BoostThreads.hh, msvc6/msvc6.dsw,
msvc6/log4cppDLL_stlport_boost/log4cppDLL_stlport_boost.dsp,
msvc6/log4cppDLL_stlport_boost/log4cppDLL_stlport_boost.rc,
msvc6/log4cppDLL_stlport_boost/readme.txt,
msvc6/testMain_stlport_boost/testMain_stlport_boost.dsp,
msvc6/testNDC_stlport_boost/testNDC_stlport_boost.dsp,
msvc6/testNTEventLog_stlport_boost/testNTEventLog_stlport_boost.dsp,
src/RollingFileAppender.cpp: Added boost threads (for version
1.28.0), and build for using STLport 4.5.3. Tested under MSVC 6.
2003-03-05 18:29 bastiaan
* ChangeLog, include/log4cpp/RemoteSyslogAppender.hh,
src/RemoteSyslogAppender.cpp: use correct type for _ipAddr.
Pointed out by Andrew Morrow. Current fix most likely breaks some
platforms that don't define in_addr_t.
2003-02-21 15:29 bastiaan
* ChangeLog, include/log4cpp/AbortAppender.hh,
src/AbortAppender.cpp: added missing layout methods.
2003-02-21 15:28 bastiaan
* src/PropertyConfiguratorImpl.cpp: added AbortAppender.
2003-02-02 14:41 bastiaan
* tests/testbench.cpp: Added delete[] to make valgrind happy.
2003-01-06 16:16 bastiaan
* ChangeLog, src/RemoteSyslogAppender.cpp: fixed handling of large
messages and buffer deallocation in _append() as reported by
Benety Goh.
2002-11-29 15:38 bastiaan
* ChangeLog, log4cpp.spec.in: install HTML documentation in
/var/www/html/manual/log4cpp.
2002-11-28 19:15 bastiaan
* ChangeLog, include/log4cpp/threading/PThreads.hh: Fix Mutex copy
bug (#645270) as suggested by Robert Ballarin.
2002-11-20 19:25 aingram
* ChangeLog: Priority.hh: added LOG4CPP_EXPORT to export Priority
class from the DLL (Win32 only)
2002-11-20 19:23 aingram
* include/log4cpp/Priority.hh: added LOG4CPP_EXPORT to export
Priority class from the DLL (Win32 only)
2002-11-11 00:14 bastiaan
* ChangeLog, configure.in: corrected library version.
2002-11-09 00:51 bastiaan
* ChangeLog, include/log4cpp/AbortAppender.hh,
include/log4cpp/Makefile.am, src/AbortAppender.cpp,
src/Makefile.am: Added AbortAppender.
2002-11-08 01:01 bastiaan
* tests/testbench.cpp: Added tests.
2002-10-29 22:38 bastiaan
* ChangeLog, configure.in, doc/html/index.html: Release as 0.3.4b
2002-10-29 11:28 bastiaan
* ChangeLog, include/log4cpp/config-win32.h,
src/PortabilityImpl.hh: added workarounds for abs() and
strftime() and localtime() not being defined in std:: on MSVC6.
See bug report #630334.
2002-10-28 23:22 bastiaan
* ChangeLog, configure.in, doc/html/index.html: Release as 0.3.4
2002-10-28 23:05 bastiaan
* src/: StringUtil.hh, StringUtil.cpp: fixed signed-vs-unsigned
comparison warning. Let both trim() implementations return
unsigned int.
2002-10-28 22:48 bastiaan
* ChangeLog, tests/testPattern.cpp: added missing 'std::'.
2002-10-28 00:28 bastiaan
* ChangeLog, src/PatternLayout.cpp: define static constant strings
in TimeStampComponent outside class declaration.
2002-10-27 23:53 bastiaan
* msvc6/log4cpp/log4cpp.dsp, bcb5/log4cpp/log4cpp.bpf,
bcb5/log4cpp/log4cpp.bpr, bcb5/log4cpp/log4cpp.mak,
msvc6/log4cppDLL/log4cppDLL.dsp: Added BasicConfigurator.
2002-10-27 20:44 bastiaan
* src/PortabilityImpl.cpp: Added.
2002-10-27 02:48 bastiaan
* ChangeLog, bcb5/log4cpp/log4cpp.bpf, bcb5/log4cpp/log4cpp.bpr,
bcb5/log4cpp/log4cpp.mak, include/log4cpp/Appender.hh,
include/log4cpp/HierarchyMaintainer.hh,
include/log4cpp/Log4cppCleanup.hh, include/log4cpp/Makefile.am,
include/log4cpp/config-win32.h, msvc6/log4cpp/log4cpp.dsp,
msvc6/log4cppDLL/log4cppDLL.dsp, src/Appender.cpp,
src/HierarchyMaintainer.cpp, src/Log4cppCleanup.cpp,
src/Makefile.am: removed Log4cppCleanup, it was kinda broken
anyway.
2002-10-27 02:38 bastiaan
* bcb5/log4cpp/log4cpp.bpf, bcb5/log4cpp/log4cpp.bpr,
bcb5/log4cpp/log4cpp.mak, include/log4cpp/AppenderSkeleton.hh,
include/log4cpp/Category.hh, include/log4cpp/CategoryStream.hh,
include/log4cpp/Log4cppCleanup.hh, include/log4cpp/Makefile.am,
include/log4cpp/OstringStream.hh,
include/log4cpp/PatternLayout.hh, include/log4cpp/Portability.hh,
msvc6/log4cpp/log4cpp.dsp, msvc6/log4cppDLL/log4cppDLL.dsp,
src/BasicLayout.cpp, src/Category.cpp, src/FileAppender.cpp,
src/HierarchyMaintainer.cpp, src/LayoutAppender.cpp,
src/Makefile.am, src/OstringStream.cpp, src/PatternLayout.cpp,
src/RollingFileAppender.cpp, src/SimpleLayout.cpp,
src/StringUtil.cpp, src/StringUtil.hh: Moved
OstringStream::vform() to StringUtil. if no <sstream> available,
define std::ostringstream. Replaced all OstringStream occurences
with std::ostringstream.
2002-10-27 01:48 bastiaan
* ChangeLog, configure.in, doc/html/index.html: Release 0.3.3
2002-10-27 01:45 bastiaan
* msvc6/log4cppDLL/Makefile.in: Generated file, should not be in
CVS.
2002-10-27 01:42 bastiaan
* ChangeLog, include/log4cpp/PatternLayout.hh,
src/PatternLayout.cpp: added default conversion patterns.
2002-10-27 00:26 bastiaan
* ChangeLog, src/NDC.cpp: added parentheses to return statement in
_get() as suggested by Derrick Hastings to fix #415160.
2002-10-26 20:30 bastiaan
* ChangeLog, include/log4cpp/config-win32.h,
msvc6/log4cpp/log4cpp.dsp, msvc6/log4cppDLL/log4cppDLL.dsp,
src/Appender.cpp, src/AppenderSkeleton.cpp,
src/BasicConfigurator.cpp, src/BasicLayout.cpp, src/Category.cpp,
src/CategoryStream.cpp, src/Configurator.cpp,
src/FileAppender.cpp, src/Filter.cpp,
src/FixedContextCategory.cpp, src/HierarchyMaintainer.cpp,
src/IdsaAppender.cpp, src/LayoutAppender.cpp,
src/Log4cppCleanup.cpp, src/LoggingEvent.cpp, src/Makefile.am,
src/NDC.cpp, src/OstreamAppender.cpp, src/OstringStream.cpp,
src/PatternLayout.cpp, src/PortabilityImpl.hh, src/Priority.cpp,
src/Properties.hh, src/PropertyConfigurator.cpp,
src/PropertyConfiguratorImpl.cpp,
src/PropertyConfiguratorImpl.hh, src/RemoteSyslogAppender.cpp,
src/RollingFileAppender.cpp, src/SimpleConfigurator.cpp,
src/SimpleLayout.cpp, src/StringQueueAppender.cpp,
src/StringUtil.hh, src/SyslogAppender.cpp,
src/Win32DebugAppender.cpp: worked around header definition bug
in MSVC by aliasing cstdlib/cstring functions in 'std::'. See
#628211
2002-10-19 02:11 bastiaan
* ChangeLog, include/log4cpp/PatternLayout.hh,
src/PatternLayout.cpp: replaced PatternLayout implementation: it
now preparses the message format for quicker layouting and
implements format specifiers, e.g. '%-5p
2002-10-19 02:09 bastiaan
* tests/testPattern.cpp: added tests for format specifiers and
more.
2002-10-10 17:46 bastiaan
* ChangeLog, include/log4cpp/threading/MSThreads.hh: added
#include<string>
2002-10-05 23:34 bastiaan
* ChangeLog: updates to log4cpp.spec.in and doc/Makefile.am
2002-10-05 23:32 bastiaan
* doc/Makefile.am: fix install location.
2002-10-05 23:30 bastiaan
* log4cpp.spec.in: don't require log4cpp for log4cpp-doc.
2002-10-05 16:30 bastiaan
* msvc6/Makefile.am: Added testMain subdir
2002-10-05 16:10 bastiaan
* ChangeLog, configure.in: 0.3.2 release.
2002-10-05 16:10 bastiaan
* doc/html/index.html: added notes for 0.3.2 and 0.3.2rc5
2002-10-05 14:09 bastiaan
* ChangeLog, configure.in, msvc6/Makefile.am,
msvc6/log4cppDLL/Makefile.am, msvc6/testDLL/Makefile.am,
msvc6/testMain/Makefile.am, msvc6/testNTEventLog/Makefile.am,
msvc6/testPattern/Makefile.am: Added missing makefiles.
2002-09-26 21:00 bastiaan
* ChangeLog, src/StringUtil.hh: fix compilation problem on Sun CC
5.3 (bug #614903).
2002-09-18 16:11 bastiaan
* ChangeLog, src/PropertyConfiguratorImpl.cpp,
src/SimpleConfigurator.cpp: multiply syslog facility value by 8.
2002-09-18 11:14 bastiaan
* ChangeLog, src/RemoteSyslogAppender.cpp: fixed log facility in
_append(), as reported by Derek Atkins.
2002-09-18 00:22 bastiaan
* ChangeLog, log4cpp.spec.in: fix relocatability of log4cpp-devel
by patching lib/liblog4cpp.la and bin/log4cpp-config in %post.
Unfortunately this results in 'rpm --verify' reporting these
files as modified.
2002-09-16 00:40 bastiaan
* ChangeLog, THANKS, configure.in, include/log4cpp/Appender.hh,
include/log4cpp/AppenderSkeleton.hh, m4/BB_CHECK_PTHREADS.m4,
m4/PETI_PEDANTIC_GCC.m4, src/FileAppender.cpp, src/Priority.cpp,
src/Properties.cpp, src/PropertyConfiguratorImpl.hh,
src/RemoteSyslogAppender.cpp, src/StringUtil.hh, tests/Clock.cpp,
tests/Clock.hh, tests/testConfig.cpp,
tests/testPropertyConfig.cpp, tests/testbench.cpp: Merged patch
#605143, contributed by Harald Wellman: support for compilation
in QNX Neutrino.
2002-09-15 23:55 bastiaan
* include/log4cpp/threading/DummyThreads.hh,
include/log4cpp/threading/MSThreads.hh,
include/log4cpp/threading/OmniThreads.hh,
include/log4cpp/threading/PThreads.hh, src/DummyThreads.cpp,
src/MSThreads.cpp, src/OmniThreads.cpp, src/PThreads.cpp: moved
bodies of getThreadId() to .cpp files.
2002-09-15 23:54 bastiaan
* src/Makefile.am, msvc6/log4cpp/log4cpp.dsp,
bcb5/log4cpp/log4cpp.bpf, bcb5/log4cpp/log4cpp.bpr,
bcb5/log4cpp/log4cpp.mak, msvc6/log4cppDLL/log4cppDLL.dsp: dded
*Threads.cpp files
2002-09-05 21:25 bastiaan
* src/Win32DebugAppender.cpp: Added terminating newline to file.
2002-09-05 13:18 bastiaan
* ChangeLog, src/PropertyConfiguratorImpl.cpp,
tests/testConfig.log4cpp.properties: Merged patch #604991,
contributed by Richard Brodie: support for setting additivity via
properties file using
'log4j.addivity.<categoryname>=[true|false]'.
2002-08-19 07:26 dresnick
* msvc6/: log4cppDLL/log4cppDLL.dsp, log4cpp/log4cpp.dsp:
src\Properties.hh added. Building of NTEventLogAppender.dll
(message file) made a little more robust.
2002-08-16 23:42 bastiaan
* src/: PropertyConfiguratorImpl.cpp, SimpleConfigurator.cpp: put
#ifdef WIN32 around #include of NTEventLogAppender and
Win32DebugAppender.
2002-08-16 23:30 bastiaan
* doc/html/index.html: Added CVS section.
2002-08-16 11:05 bastiaan
* ChangeLog, include/log4cpp/threading/Makefile.am: Added
MSThreads.hh to Makefile.am
2002-08-16 01:22 bastiaan
* configure.in: Upped release to 0.3.2rc3
2002-08-16 01:19 bastiaan
* ChangeLog: Release 0.3.2rc3 (fixed some show stopping mess ups).
2002-08-16 01:17 bastiaan
* include/log4cpp/threading/PThreads.hh: use reinterpret_cast<>.
2002-08-16 01:17 bastiaan
* tests/testProperties.cpp: add std::.
2002-08-14 23:52 bastiaan
* ChangeLog: Release as 0.3.2rc2
2002-08-14 11:12 bastiaan
* include/log4cpp/: NTEventLogAppender.hh, Win32DebugAppender.hh:
Added #error messages.
2002-08-14 11:05 bastiaan
* ChangeLog, include/log4cpp/NTEventLogAppender.hh,
include/log4cpp/Win32DebugAppender.hh:
include/log4cpp/Win32DebugAppender.hh: added warnings about
platform dependency.
2002-08-14 11:04 bastiaan
* doc/Doxyfile.in: predefine 'WIN32' as suggested by David Resnick.
2002-08-14 10:07 bastiaan
* ChangeLog, Makefile.am, include/log4cpp/Makefile.am,
tests/Makefile.am: added distclean-local targets.
2002-08-13 09:20 dresnick
* ChangeLog, include/log4cpp/PatternLayout.hh: Documentation fixes.
2002-08-13 01:56 bastiaan
* Makefile.am: Fix distclean-local