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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557
|
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
2002-08-13 01:38 bastiaan
* doc/Makefile.am: Finally fix uninstall?
2002-08-13 01:16 bastiaan
* doc/Makefile.am: Fix typo in uninstall, I better go to bed now.
2002-08-13 01:10 bastiaan
* doc/Makefile.am: Fix uninstall target.
2002-08-13 01:00 bastiaan
* doc/Makefile.am: Fix uninstall.
2002-08-13 00:41 bastiaan
* tests/: Makefile.am, log4cpp.properties,
testConfig.log4cpp.properties, testProperties.properties: Added
.properties files.
2002-08-13 00:35 bastiaan
* doc/html/Makefile.am: Fix file paths.
2002-08-13 00:31 bastiaan
* ChangeLog, configure.in, doc/Makefile.am, doc/html/Makefile.am:
added doc/html to automake.
2002-08-13 00:08 bastiaan
* doc/: Makefile.am, mainPage.txt: added mainPage.txt.
2002-08-13 00:03 bastiaan
* doc/: Makefile.am, html/sflogo.png, html/index.html: Added
SourceForge logo.
2002-08-12 23:24 bastiaan
* ChangeLog: Release as 0.3.2rc2
2002-08-12 23:21 bastiaan
* tests/: testCategory.cpp, testConfig.cpp, testDLL.cpp,
testFilter.cpp, testPropConfig.cpp, testbench.cpp: Replaced
#include "log4cpp/X" with #include <log4cpp/X>
2002-08-12 23:20 bastiaan
* tests/Makefile.am: Added testProperties and testPropertyConfig.
2002-08-12 23:19 bastiaan
* tests/: testProperties.cpp, testPropertyConfig.cpp: Added.
2002-08-12 23:04 bastiaan
* doc/html/index.html: more documentation updates.
2002-08-12 22:57 bastiaan
* src/Category.cpp: added lock to getAllAppenders().
2002-08-12 22:25 bastiaan
* include/log4cpp/Portability.hh: added comments.
2002-08-12 22:21 bastiaan
* msvc6/log4cppDLL/log4cppDLL.rc: update version and product info.
2002-08-09 22:51 bastiaan
* ChangeLog, include/log4cpp/RollingFileAppender.hh: correct
constness of constructor parameters, as pointed out by James
Emery.
2002-08-07 01:21 bastiaan
* ChangeLog, m4/CREATE_GENERIC_CONFIG.m4: fix log4cpp-config
creation (use PACKAGE_TARNAME instead of PACKAGE)
2002-08-07 01:13 bastiaan
* ChangeLog, INSTALL, README, doc/html/default.css,
doc/html/index.html: converted most documentation to HTML.
2002-08-06 23:32 bastiaan
* ChangeLog, configure.ac, configure.in: renamed configure.ac back
to configure.in due to bug in libtoolize 1.4.2
2002-08-06 10:33 dresnick
* ChangeLog, msvc6/log4cppDLL/log4cppDLL.rc,
msvc6/log4cppDLL/resource.h: DLL version resource cleaned up.
2002-08-06 01:28 bastiaan
* NEWS, doc/html/default.css, doc/html/index.html: Documentation
updates.
2002-08-05 07:31 dresnick
* ChangeLog, msvc6/log4cppDLL/log4cppDLL.dsp,
msvc6/log4cppDLL/log4cppDLL.rc, msvc6/log4cppDLL/resource.h:
Version property sheet added to DLL build.
2002-08-05 07:26 dresnick
* msvc6/testPropConfig/testPropConfig.dsp: Test for
PropertyConfigurator.
2002-08-04 10:15 dresnick
* msvc6/msvc6.dsw, msvc6/log4cpp/log4cpp.dsp,
msvc6/testDLL/testDLL.dsp, tests/log4cpp.property,
tests/testPropConfig.cpp: Test for PropertyConfigurator added.
2002-08-04 10:13 dresnick
* ChangeLog: Appenders added to PropertyConfigurator.
2002-08-04 10:05 dresnick
* src/PropertyConfiguratorImpl.cpp: Added RollingFileAppender,
NTEventLogAppender. Threshold attrib added for appenders. Invalid
priority in configureCategory prints message of invalid_argument
exception.
2002-08-04 10:03 dresnick
* src/Priority.cpp: Surrounding quotes added around invalid
priority in thrown invalid_argument exception.
2002-08-04 01:38 bastiaan
* ChangeLog, doc/Doxyfile.in, doc/Makefile.am,
doc/html/default.css, doc/html/index.html: added new index page
and move Doxygen generated docs to api subdirectory.
2002-08-02 15:10 bastiaan
* ChangeLog, src/LoggingEvent.cpp: fill in the thread Id.
2002-08-02 01:21 bastiaan
* ChangeLog: Added POSIX threads support, contributed by Emiliano
Martin.
2002-08-02 01:13 bastiaan
* include/log4cpp/threading/: Makefile.am, Threading.hh: add
PThreads.hh
2002-08-02 01:12 bastiaan
* include/log4cpp/threading/PThreads.hh: added POSIX threads
support file contributed by Emiliano Martin.
2002-08-02 01:12 bastiaan
* configure.ac: added test for POSIX threads.
2002-08-02 01:12 bastiaan
* THANKS: added Emimiliano.
2002-08-02 01:11 bastiaan
* m4/BB_CHECK_OMNITHREADS.m4: added 'thread safity' defines, needed
at least for STL.
2002-08-02 01:11 bastiaan
* m4/BB_CHECK_PTHREADS.m4: added. Crude initial pthreads check.
Need to nick a good macro somewhere else :-)
2002-07-31 01:10 bastiaan
* src/PropertyConfiguratorImpl.cpp: added 'append' property for
FileAppender.
2002-07-31 01:09 bastiaan
* m4/AC_CREATE_PREFIX_CONFIG_H.m4: removed a debug print statement.
2002-07-31 01:07 bastiaan
* include/log4cpp/TimeStamp.hh: added some doxygen comments
2002-07-23 00:12 bastiaan
* ChangeLog, src/Priority.cpp: put names[] in anonymous namespace
instead of declaring it static. This should solve Solaris 8
dynamic library problem (see patch #583905).
2002-07-23 00:04 bastiaan
* ChangeLog: autoconf updates.
2002-07-23 00:00 bastiaan
* configure.ac, log4cpp.spec.in, doc/Doxyfile.in, doc/Makefile.am,
m4/AC_CREATE_PREFIX_CONFIG_H.m4, m4/AC_CXX_HAVE_SSTREAM.m4,
m4/AC_CXX_NAMESPACES.m4, m4/BB_CHECK_OMNITHREADS.m4: updated AC
macros and variables to autoconf 2.50.
2002-07-22 23:58 bastiaan
* configure.in: renamed to configure.ac.
2002-07-12 00:39 bastiaan
* ChangeLog, src/PropertyConfiguratorImpl.cpp,
src/PropertyConfiguratorImpl.hh: use map.lower_bound() to
determine begin and end for appender and category properties.
2002-07-12 00:37 bastiaan
* ChangeLog, src/PatternLayout.cpp: use std::string::size_type
instead of int.
2002-07-10 10:40 dresnick
* ChangeLog: PatternLayout date formatting and minor (mainly MSVC6)
adjustments.
2002-07-10 10:38 dresnick
* msvc6/msvc6.dsw: testDLL and testPattern projects added.
2002-07-10 10:36 dresnick
* msvc6/testPattern/testPattern.dsp, tests/testPattern.cpp: Tests
PatternLayout, especially date formatting.
2002-07-10 10:35 dresnick
* include/log4cpp/PatternLayout.hh, src/PatternLayout.cpp: log4j
style date formatting added.
2002-07-10 10:35 dresnick
* tests/testDLL.cpp, msvc6/testDLL/testDLL.dsp: Test of win32
platform log4cpp dll, including export of container classes.
2002-07-10 10:33 dresnick
* msvc6/: log4cpp/log4cpp.dsp, log4cppDLL/log4cppDLL.dsp:
PropertyConfiguratorImpl.cpp and Properties.cpp added,
ConfiguratorSkeleton.cpp removed.
2002-07-10 01:19 bastiaan
* ChangeLog, src/PropertyConfiguratorImpl.cpp: fixed
configureCategory() fix.
2002-07-10 00:37 bastiaan
* ChangeLog, src/PropertyConfiguratorImpl.cpp,
src/PropertyConfiguratorImpl.hh: renamed addAppenders() to
configureCategory(). fixed configureCategory(): had a nested
loop for priorities and appenders. replaced find(property, '.')
with StringUtil::split() in several places.
2002-07-10 00:36 bastiaan
* src/: StringUtil.cpp, StringUtil.hh: added a more generic split()
method taking an output_iterator instead of a vector to store the
result.
2002-07-06 23:28 bastiaan
* ChangeLog, src/PropertyConfiguratorImpl.cpp,
src/PropertyConfiguratorImpl.hh: changed the way configuration is
done: first instantatiate all Appenders defined in the config,
then add them to Categories where necessary. Multiple Appenders
per Category are now supported. Currently doConfigure() leaks
all Appenders, as they will be not be owned by any Categories.
This will be fixed in the future by having the LoggerRepository
maintain ownership of all Categories, Appenders, etc
2002-07-05 19:10 bastiaan
* src/: StringUtil.cpp, StringUtil.hh: added split() method.
2002-07-05 00:11 bastiaan
* ChangeLog, src/Properties.cpp, src/Properties.hh: added Log4j
style variable substitution: ${NAME} will be substituted with
environment variable NAME or if not found with property NAME.
'${${}' denotes a literal '${' sequence.
2002-07-04 00:28 bastiaan
* include/log4cpp/: PropertyConfigurator.hh, SimpleConfigurator.hh:
Updated documentation.
2002-07-04 00:25 bastiaan
* include/log4cpp/Makefile.am, src/Makefile.am: Added
BasicConfigurator.
2002-07-04 00:25 bastiaan
* ChangeLog, include/log4cpp/BasicConfigurator.hh,
src/BasicConfigurator.cpp: added BasicConfiguator.
2002-07-03 23:55 bastiaan
* ChangeLog, include/log4cpp/Category.hh,
include/log4cpp/CategoryStream.hh,
include/log4cpp/FixedContextCategory.hh: fixed documentation
buglets.
2002-07-03 18:12 bastiaan
* ChangeLog, src/PropertyConfiguratorImpl.cpp: use getString(),
etc. to get properties.
2002-07-03 17:53 bastiaan
* ChangeLog: Changes to PropertyConfigrator related classes.
2002-07-03 17:52 bastiaan
* src/TimeStamp.cpp: replaced #include <string.h> with <cstring>.
2002-07-03 17:51 bastiaan
* include/log4cpp/Makefile.am: Removed ConfiguratorSkeleton.hh
2002-07-03 17:50 bastiaan
* src/Makefile.am: Added: StringUtil.hh, StringUtil.cpp,
Properties,hh, Properties.cpp, PropertyConfiguratorImpl.hh,
PropertyConfiguratorImpl.cpp. Removed: ConfiguratorSkeleton.cpp
2002-07-03 17:48 bastiaan
* m4/PETI_PEDANTIC_GCC.m4: remove -pedantic flag for g++ 2.96 to
get rid of those iritating warnings about std IOstreams code.
2002-07-03 17:46 bastiaan
* src/RollingFileAppender.cpp: fix signed/unsigned comparison
warning.
2002-07-03 17:42 bastiaan
* src/: StringUtil.cpp, StringUtil.hh: added, contains
ConfiguratorSkeleton::trim().
2002-07-03 17:31 bastiaan
* include/log4cpp/ConfiguratorSkeleton.hh,
src/ConfiguratorSkeleton.cpp: removed
2002-07-03 17:30 bastiaan
* include/log4cpp/PropertyConfigurator.hh,
src/PropertyConfigurator.cpp: leave only 2 static configure()
methods, like SimpleConfigurator. The actual implementation is
now in PropertyConfiguratorImpl.
2002-07-03 17:28 bastiaan
* src/: PropertyConfiguratorImpl.cpp, PropertyConfiguratorImpl.hh:
added. This class is a merge of PropertyConfigurator and
ConfiguratorSkeleton. ConfiguratorSkeleton is not generic enough
to be exposed in the API.
2002-07-03 17:27 bastiaan
* src/: Properties.cpp, Properties.hh: added, moved
PropertyConfigurator::parseConfig() to load().
2002-07-03 01:32 bastiaan
* ChangeLog, include/log4cpp/ConfiguratorSkeleton.hh,
src/ConfiguratorSkeleton.cpp: changed property names to
JavaBeans/log4j style. Use the appender name as name (duh)
instead of the 'name' property. Don't set a layout if none have
been specified. Use std::string::size_type where applicable.
Made some exception messages clearer. Compacted the code a bit.
2002-07-03 01:31 bastiaan
* include/log4cpp/RemoteSyslogAppender.hh,
src/RemoteSyslogAppender.cpp: accept '-1' for facility and
portNumber, implying the 'default value'.
2002-07-02 22:00 bastiaan
* ChangeLog, bcb5/log4cpp/log4cpp.bpf, bcb5/log4cpp/log4cpp.bpr,
bcb5/log4cpp/log4cpp.mak, msvc6/log4cpp/log4cpp.dsp: added
PropertyConfigurator files.
2002-07-02 20:32 bastiaan
* ChangeLog, THANKS, include/log4cpp/Configurator.hh,
include/log4cpp/ConfiguratorSkeleton.hh,
include/log4cpp/Makefile.am,
include/log4cpp/PropertyConfigurator.hh,
include/log4cpp/SimpleConfigurator.hh, src/Configurator.cpp,
src/ConfiguratorSkeleton.cpp, src/Makefile.am,
src/PropertyConfigurator.cpp, src/RollingFileAppender.cpp,
src/SimpleConfigurator.cpp: integrated PropertyConfigurator
contributed by Alan Anderson <alan@rushmore.com>.
2002-07-02 19:52 bastiaan
* include/log4cpp/NDC.hh: Fix documentation buglet.
2002-07-02 15:34 bastiaan
* ChangeLog, include/log4cpp/Category.hh,
include/log4cpp/HierarchyMaintainer.hh,
src/HierarchyMaintainer.cpp, src/Category.cpp: Changed return
type of getCurrentCategories() to std:vector<Category>. vector<>
is more efficient than set<> and works around MSVC++ DLL export
brain damage, see Microsoft Q168958.
2002-06-19 15:50 bastiaan
* configure.in, src/Makefile.am: Upped version to 0.3.2rc1
2002-06-19 15:45 bastiaan
* ChangeLog, NEWS: Upped version to 0.3.2rc1
2002-06-19 15:30 bastiaan
* msvc6/Makefile.am: added NTEventLogCategories.
2002-06-19 15:30 bastiaan
* include/log4cpp/Makefile.am: added NTEventLog.hh
2002-06-19 15:30 bastiaan
* include/log4cpp/config-win32.h: #define LOG4CPP_SUPPLY_DLLMAIN
2002-06-19 15:29 bastiaan
* src/DllMain.cpp: enclosed in #ifdef LOG4CPP_SUPPLY_DLLMAIN
2002-06-19 15:28 bastiaan
* src/Makefile.am: added NTEventlog.cpp and DllMain.cpp to sources.
2002-06-18 13:41 bastiaan
* THANKS: Added David Resnick and Aaron Ingram.
2002-06-18 13:31 bastiaan
* ChangeLog, src/NDC.cpp, tests/testNDC.cpp: fix top level context
falling off, if depth > 2.
2002-06-18 00:43 aingram
* ChangeLog: * Fixed default port for syslog in
SimpleConfigurator.cpp * Added a sample configuration file:
log4cpp.cfg
2002-06-18 00:42 aingram
* log4cpp.cfg: added a sample configuration file for
SimpleConfigurator
2002-06-18 00:09 aingram
* src/SimpleConfigurator.cpp: fixed default port for syslog
2002-06-17 09:43 dresnick
* ChangeLog, include/log4cpp/Portability.hh,
include/log4cpp/NTEventLogAppender.hh,
include/log4cpp/config-win32.h,
include/log4cpp/threading/MSThreads.hh,
include/log4cpp/threading/Threading.hh,
msvc6/NTEventLogCategories.mc, msvc6/msvc6.dsw,
msvc6/log4cpp/log4cpp.dsp, msvc6/log4cppDLL/Makefile.am,
msvc6/log4cppDLL/Makefile.in, msvc6/log4cppDLL/log4cppDLL.dsp,
msvc6/testMain/testMain.dsp,
msvc6/testNTEventLog/testNTEventLog.dsp, src/DllMain.cpp,
src/NTEventLogAppender.cpp, src/SimpleConfigurator.cpp,
tests/testNTEventLog.cpp: Merge of Aaron Ingrams MSThreads patch.
Addition of NTEventLogAppender. See ChangeLog for more details.
2002-06-07 11:30 legoater
* ChangeLog: Added aclocal support
2002-06-03 23:14 legoater
* Makefile.am, log4cpp.m4: Added aclocal support
2002-06-03 22:48 legoater
* tests/Clock.cpp: Added rdtscl() macro from <asm/msr.h> which
disappeared on RedHat 7.3
2002-05-22 16:19 bastiaan
* ChangeLog: Added aclocal support
2002-05-22 16:19 bastiaan
* include/log4cpp/config-win32.h: fix compilation in Visual .NET.
2002-05-12 15:06 bastiaan
* bcb5/log4cpp/log4cpp.bpf, bcb5/log4cpp/log4cpp.bpr,
bcb5/log4cpp/log4cpp.mak, include/log4cpp/Makefile.am,
include/log4cpp/Win32DebugAppender.hh, msvc6/log4cpp/log4cpp.dsp,
src/Makefile.am, src/Win32DebugAppender.cpp: dded
Win32DebugAppender contributed by Alan Anderson.
2002-05-12 14:15 bastiaan
* ChangeLog, Makefile.am: convert *.bpg files to CRLF in
dist.(Paulo Pizarro)
2002-05-12 13:51 bastiaan
* src/RollingFileAppender.cpp, ChangeLog: explicitly remove oldest
file in rollOver() because win98 cannot rename() to existing
files. (Paulo Pizarro)
2002-04-21 23:47 bastiaan
* ChangeLog, src/PatternLayout.cpp: #include <stdint.h> only if
available.
2002-04-21 23:47 bastiaan
* m4/AC_C_INT64_T.m4: added #define of HAVE_STDINT_H.
2002-04-21 23:08 bastiaan
* ChangeLog, include/log4cpp/config-win32.h: added mode_t typedef.
2002-04-09 21:44 bastiaan
* tests/Clock.cpp: test for i386 architecture on linux (patch
#541608)
2002-04-04 22:36 bastiaan
* ChangeLog, NEWS: Release 0.3.1
2002-04-04 22:36 bastiaan
* m4/PETI_PEDANTIC_GCC.m4: add -Wno-unused to g++ options.
2002-04-04 22:26 bastiaan
* bcb5/log4cpp/: log4cpp.bpf, log4cpp.bpr, log4cpp.mak: Added
RollingFileAppender
2002-04-04 22:25 bastiaan
* msvc6/log4cpp/log4cpp.dsp: Added RollingFileAppender and
threading files.
2002-04-04 22:03 bastiaan
* ChangeLog, configure.in: Increment version to 0.3.1.
2002-04-04 21:47 bastiaan
* ChangeLog, src/Category.cpp: fix previous fix for bug #527467.
2002-03-31 01:13 bastiaan
* include/log4cpp/Portability.hh: Disable exception specifier
warnings (issue #536668)
2002-03-29 00:47 bastiaan
* ChangeLog: compatilibty improvements.
2002-03-29 00:46 bastiaan
* configure.in, include/log4cpp/Portability.hh: back out
strcasecmp() stuff.
2002-03-29 00:44 bastiaan
* src/PatternLayout.cpp: #include <stdint.h>
2002-03-29 00:44 bastiaan
* m4/AC_C_INT64_T.m4: #include <stdint.h> and remove $GCC check.
2002-03-22 23:37 bastiaan
* ChangeLog, THANKS, include/log4cpp/Makefile.am,
include/log4cpp/RollingFileAppender.hh, src/Makefile.am,
src/RollingFileAppender.cpp, src/SimpleConfigurator.cpp: added
RollingFileAppender contributed by Paulo Pizarro
<paulo.pizarro@digitro.com.br>
2002-03-22 23:37 bastiaan
* NEWS: added warning.
2002-03-22 22:30 bastiaan
* ChangeLog, include/log4cpp/FileAppender.hh, src/FileAppender.cpp:
added 'append' and 'mode' options.
2002-03-22 21:59 bastiaan
* include/log4cpp/threading/: BoostThreads.hh, Makefile.am: Added.
2002-03-22 13:44 bastiaan
* tests/: testFilter.cpp, testPriority.cpp: Added missing std::
specifiers.
2002-03-21 00:35 bastiaan
* ChangeLog, src/Category.cpp: fix invalidated iterator usage. (bug
#527467)
2002-03-21 00:24 bastiaan
* ChangeLog, include/log4cpp/Appender.hh,
include/log4cpp/Category.hh,
include/log4cpp/FixedContextCategory.hh, src/Category.cpp,
src/FixedContextCategory.cpp: added getAllAppenders() method.
(feature request #527381)
2002-03-21 00:11 bastiaan
* include/log4cpp/SimpleConfigurator.hh: Added documentation
comments.
2002-03-20 23:52 bastiaan
* ChangeLog, src/Log4cppCleanup.cpp: set variable to NULL after
delete. (feature request #527393)
2002-03-20 23:19 bastiaan
* ChangeLog, include/log4cpp/SimpleConfigurator.hh,
src/SimpleConfigurator.cpp: added configure(std::istream&)
method. (feature request #527760)
2002-03-17 16:55 bastiaan
* src/SyslogAppender.cpp, ChangeLog: fix format string bug. (bug
#527475)
2002-03-17 16:39 bastiaan
* ChangeLog, tests/testbench.cpp: added missing 'std::' specifiers.
(bug #530332)
2002-02-25 07:33 ytcheung
* src/FileAppender.cpp: only close the file descriptor if the file
descriptor is not -1 set the file descriptor to -1 after closing
it
2002-02-25 07:17 ytcheung
* src/FileAppender.cpp: cosmetic changes in reopen()
2002-02-22 06:10 ytcheung
* INSTALL: added detail instructions for compliation for OpenVMS
2002-02-20 12:37 ytcheung
* src/FileAppender.cpp: Removed OpenVMS specific switches for
open(). The previous switches make logging very slow. For
OpenVMS usage, users may have to modify this class to pass on
additional switches to the open() call.
2002-02-18 23:37 bastiaan
* ChangeLog: Release 0.3.0
2002-02-18 23:36 bastiaan
* NEWS: release 0.3.0
2002-02-18 23:36 bastiaan
* README: Added Status section
2002-02-18 23:24 bastiaan
* INSTALL: added section about ./configure options
2002-02-18 23:23 bastiaan
* configure.in: upped release to 0.3.0 and LT version to 4.0.0
2002-02-18 23:13 bastiaan
* include/log4cpp/threading/OmniThreads.hh: added Doxyen comments.
2002-02-18 23:12 bastiaan
* src/Appender.cpp: added missing Mutex
2002-02-18 23:11 bastiaan
* src/OstringStream.cpp: fix typo
2002-02-18 23:10 bastiaan
* tests/Clock.hh: replace "long long" with int64_t
2002-02-18 00:33 bastiaan
* ChangeLog, INSTALL: added some platform specific build
instructions.
2002-02-11 23:14 bastiaan
* ChangeLog, include/log4cpp/Appender.hh, src/Appender.cpp: added
Mutex for _allAppender map.
2002-02-11 23:08 bastiaan
* ChangeLog, src/Appender.cpp, src/AppenderSkeleton.cpp,
src/BasicLayout.cpp, src/Category.cpp, src/CategoryStream.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/NDC.cpp,
src/OstreamAppender.cpp, src/OstringStream.cpp,
src/PatternLayout.cpp, src/Priority.cpp,
src/RemoteSyslogAppender.cpp, src/SimpleConfigurator.cpp,
src/SimpleLayout.cpp, src/StringQueueAppender.cpp,
src/SyslogAppender.cpp, src/TimeStamp.cpp: replaced #include""
with #include<>
2002-02-11 22:54 bastiaan
* include/log4cpp/TimeStamp.hh: added #include of Portability.hh
2002-02-11 22:52 bastiaan
* ChangeLog, include/log4cpp/Appender.hh,
include/log4cpp/AppenderSkeleton.hh,
include/log4cpp/BasicLayout.hh, include/log4cpp/Category.hh,
include/log4cpp/CategoryStream.hh,
include/log4cpp/FileAppender.hh, include/log4cpp/Filter.hh,
include/log4cpp/FixedContextCategory.hh,
include/log4cpp/IdsaAppender.hh, include/log4cpp/Layout.hh,
include/log4cpp/LayoutAppender.hh,
include/log4cpp/Log4cppCleanup.hh,
include/log4cpp/LoggingEvent.hh, include/log4cpp/NDC.hh,
include/log4cpp/OstreamAppender.hh,
include/log4cpp/OstringStream.hh,
include/log4cpp/PatternLayout.hh, include/log4cpp/Portability.hh,
include/log4cpp/Priority.hh,
include/log4cpp/RemoteSyslogAppender.hh,
include/log4cpp/SimpleConfigurator.hh,
include/log4cpp/SimpleLayout.hh,
include/log4cpp/StringQueueAppender.hh,
include/log4cpp/SyslogAppender.hh: Replaced #include"" with
#include<>
2002-02-11 00:27 bastiaan
* ChangeLog: Mulithread support updates.
2002-02-11 00:25 bastiaan
* configure.in: integrated check of omnithreads.
2002-02-11 00:23 bastiaan
* src/: Category.cpp, FixedContextCategory.cpp,
HierarchyMaintainer.cpp, NDC.cpp: added threadsafety provisions.
2002-02-11 00:21 bastiaan
* include/log4cpp/: Category.hh, FixedContextCategory.hh,
HierarchyMaintainer.hh, Makefile.am, NDC.hh: Added threadsafety
provisions.
2002-02-11 00:15 bastiaan
* include/log4cpp/threading/DummyThreads.hh: ScopedLock is now an
integer.
2002-02-11 00:13 bastiaan
* m4/BB_CHECK_OMNITHREADS.m4: added.
2002-02-08 01:22 bastiaan
* include/log4cpp/threading/: DummyThreads.hh, Threading.hh: Added.
2002-02-08 01:22 bastiaan
* include/log4cpp/threading/OmniThreads.hh: Correct file name.
2002-02-08 00:51 bastiaan
* include/log4cpp/threading/OmniThreads.hh: Added.
2002-02-06 10:44 ytcheung
* src/FileAppender.cpp: Add some OpenVMS specific parameters when
opening a file. The changes allow other users to perform a
type/continuous on the log file, a unix equivalent of tail -f.
2002-02-05 23:53 bastiaan
* ChangeLog, src/AppenderSkeleton.cpp: doAppend(): correct
comparison of _threshold against event priority (bug #513481).
2002-02-05 23:52 bastiaan
* tests/Clock.cpp: add missing 'std::'.
2002-01-28 01:41 bastiaan
* ChangeLog: Release 0.2.7
2002-01-28 01:41 bastiaan
* configure.in: upped version to 0.2.7.
2002-01-28 01:40 bastiaan
* bcb5/testPattern/Makefile.am: set EXTRA_DIST.
2002-01-28 01:32 bastiaan
* NEWS: set release date for 0.2.7, added bug #506907 fixed.
2002-01-28 01:27 bastiaan
* ChangeLog, configure.in: dded bcb5/testConfig/Makefile to
AC_OUTPUT
2002-01-28 01:26 bastiaan
* include/log4cpp/FixedContextCategory.hh: removed superfluous
class qualification for ownsAppender().
2002-01-28 01:18 bastiaan
* tests/testbench.cpp: added more measurements, using crude
cut&paste of code.
2002-01-25 10:23 bastiaan
* ChangeLog, configure.in, src/SimpleConfigurator.cpp: fix bug
#506907 (MSVC++ compile failure) with ::dup(fileno(stdout))
upped version to 0.2.7rc2
2002-01-25 09:49 uwej
* ChangeLog, bcb5/Makefile.am, bcb5/bcb5.bpg, bcb5/bcb5.mak,
bcb5/log4cpp/log4cpp.bpf, bcb5/log4cpp/log4cpp.bpr,
bcb5/log4cpp/log4cpp.mak, bcb5/testCategory/testCategory.bpr,
bcb5/testConfig/Makefile.am, bcb5/testConfig/testConfig.bpf,
bcb5/testConfig/testConfig.bpr, bcb5/testConfig/testConfig.mak,
bcb5/testFixedContextCategory/testFixedContextCategory.bpr,
bcb5/testNDC/testNDC.bpr, bcb5/testPattern/testPattern.bpr,
bcb5/testPattern/testPattern.mak, bcb5/testmain/testmain.bpr,
src/SimpleConfigurator.cpp, tests/testConfig.cpp: Port to BCB5
for 0.2.7 RC 1
2002-01-22 01:01 bastiaan
* ChangeLog: updates to NEWS and src/FixedContextCategory.cpp.
2002-01-22 01:01 bastiaan
* NEWS: added summary for 0.2.7 release
2002-01-22 01:00 bastiaan
* src/FixedContextCategory.cpp: Added missing
getAppender(Appender*).
2002-01-22 00:33 bastiaan
* ChangeLog: updates for multiple Appender support.
2002-01-22 00:32 bastiaan
* include/log4cpp/FixedContextCategory.hh,
src/FixedContextCategory.cpp: sync methods for multiple Appender
support.
2002-01-22 00:32 bastiaan
* include/log4cpp/Category.hh: update doxygen comments.
2002-01-22 00:29 bastiaan
* src/: HierarchyMaintainer.cpp, SimpleConfigurator.cpp: replaced
setAppender() with addAppender().
2002-01-22 00:07 bastiaan
* tests/: testFixedContextCategory.cpp, testPattern.cpp,
testbench.cpp, testmain.cpp: replaced setAppender() with
addAppender().
2002-01-21 11:41 bastiaan
* ChangeLog: Updates to Category.cpp, testCategory.cpp and
configure.in.
2002-01-21 11:40 bastiaan
* src/Category.cpp: fix ownsAppender() methods.
2002-01-21 11:40 bastiaan
* tests/testCategory.cpp: rename appender 'default' to 'default2'.
2002-01-21 11:39 bastiaan
* configure.in: upped version to 0.2.7rc1 and LT_VERSION to 3:1:2
2002-01-21 00:34 bastiaan
* ChangeLog, THANKS, include/log4cpp/Category.hh, src/Category.cpp,
tests/testCategory.cpp: merged in support for multiple Appenders,
contributed by Brendan B. Boerner.
2002-01-17 22:57 bastiaan
* ChangeLog, include/log4cpp/Makefile.am,
include/log4cpp/RollingFileAppender.hh, src/Makefile.am,
src/RollingFileAppender.cpp: removed RollingFileAppender, to be
replaced with DailyRollingFileAppender.
2002-01-17 13:55 bastiaan
* ChangeLog, include/log4cpp/Category.hh,
include/log4cpp/HierarchyMaintainer.hh, src/Category.cpp,
src/HierarchyMaintainer.cpp: added Category::exits(std::string).
2002-01-16 17:27 bastiaan
* ChangeLog, src/SimpleConfigurator.cpp: added 'stdout' and
'stderr' appenders.
2002-01-16 13:51 bastiaan
* ChangeLog, include/log4cpp/Category.hh, src/Category.cpp: fix bug
#504314: added missing log methods for priority 'fatal'.
2002-01-10 17:45 bastiaan
* include/log4cpp/RemoteSyslogAppender.hh, ChangeLog: added
SyslogFacility type.
2002-01-10 13:21 bastiaan
* include/log4cpp/: config-win32.h, Portability.hh: have stricmp()
but not strcasecmp().
2002-01-10 13:20 bastiaan
* configure.in: added check for strcasecmp() and stricmp().
2002-01-10 01:25 bastiaan
* ChangeLog, THANKS, include/log4cpp/Makefile.am,
include/log4cpp/RollingFileAppender.hh, src/Makefile.am,
src/RollingFileAppender.cpp: added RollingFileAppender
contributed by Alex Tapaccos.
2002-01-09 13:31 bastiaan
* ChangeLog, src/SimpleConfigurator.cpp: skip all whitespace before
PatternLayout pattern, not just one.
2002-01-08 17:05 bastiaan
* ChangeLog, src/SimpleConfigurator.cpp: fix screwy fix for Bug
#500766, now using Alex' method. (Obsoletes Patch #500832).
2002-01-08 13:03 bastiaan
* ChangeLog, src/SimpleConfigurator.cpp: skip space before
PatternLayout pattern (Bug #500766).
2002-01-04 20:34 bastiaan
* ChangeLog, include/log4cpp/RemoteSyslogAppender.hh,
include/log4cpp/SyslogAppender.hh, src/PatternLayout.cpp,
src/RemoteSyslogAppender.cpp, src/SyslogAppender.cpp: inherit
from LayoutApppender instead of AppenderSkeleton (Bug #499524).
2002-01-04 20:31 bastiaan
* include/log4cpp/config-win32.h: fix int64_t for Borland compiler.
2002-01-04 13:09 bastiaan
* ChangeLog: Fixes for OpenVMS from Tony Cheung.
2002-01-04 13:08 bastiaan
* include/log4cpp/config-openvms.h: #include <inttypes.h> for
int64_t.
2002-01-04 13:07 bastiaan
* src/PatternLayout.cpp: doFormat(): removed superfluous return
statement.
2002-01-03 17:00 bastiaan
* tests/testFilter.cpp: added.
2002-01-03 16:59 bastiaan
* ChangeLog: fix to Filter.hh and addition of testFilter.
2002-01-03 16:57 bastiaan
* tests/Makefile.am: Added testFilter to tests.
2002-01-03 16:56 bastiaan
* include/log4cpp/Filter.hh: decide() is NOT abstract.
2001-12-22 00:40 bastiaan
* ChangeLog, configure.in: Upped release to 0.2.6b
2001-12-21 13:16 bastiaan
* ChangeLog, src/Priority.cpp, tests/Makefile.am,
tests/testPriority.cpp: src/Priority.cpp: getPriorityValue(): fix
bug in numerical input handling. tests/Makefile.am: added very
simple test for Priority. tests/testPriority.cpp: added.
2001-12-13 14:04 bastiaan
* ChangeLog, src/OstringStream.cpp: use portable_vsnprintf(), not
portable_snprintf().
2001-12-11 22:10 bastiaan
* ChangeLog: Release 0.2.6
2001-12-11 22:06 bastiaan
* include/log4cpp/config-win32.h: #define LOG4CPP_USE_CLEANUP.
2001-12-11 22:06 bastiaan
* NEWS: Release 0.2.6
2001-12-11 22:04 bastiaan
* TODO: Mark PatternLayout and SimpleConfigurator as done.
2001-12-11 11:14 bastiaan
* ChangeLog: Fixes for MSVC and doc-dist.
2001-12-11 11:13 bastiaan
* include/log4cpp/config-win32.h: #define int64_t as __int64,
#define LOG4CPP_MISSING_INT64_OSTREAM_OP
2001-12-11 11:12 bastiaan
* src/PatternLayout.cpp: workaround missing << operator for int64_t
on MSVC.
2001-12-11 11:12 bastiaan
* src/TimeStamp.cpp: fix ref typo for timeb struct.
2001-12-11 11:10 bastiaan
* Makefile.am: exclude CVS subdir from doc-dist tar ball.
2001-11-30 13:40 bastiaan
* ChangeLog, include/log4cpp/Appender.hh,
include/log4cpp/HierarchyMaintainer.hh,
include/log4cpp/Log4cppCleanup.hh, src/Appender.cpp,
src/HierarchyMaintainer.cpp, src/Log4cppCleanup.cpp: #define
LOG4CPP_USE_CLEANUP.
2001-11-30 13:39 bastiaan
* include/log4cpp/Makefile.am: added config-openvms.h to headers.
2001-11-30 13:38 bastiaan
* tests/testbench.cpp: use TimeStamp instead of ::time().
2001-11-30 00:49 bastiaan
* include/config-win32.h: Moved to include/log4cpp/config-win32.h
2001-11-30 00:49 bastiaan
* ChangeLog: Fixes for TimeStamp and src/Makefile.am
2001-11-30 00:48 bastiaan
* src/Makefile.am: added snprintf.c to noinst_HEADERS.
2001-11-30 00:47 bastiaan
* include/log4cpp/TimeStamp.hh: moved class description to the
correct location.
2001-11-30 00:37 bastiaan
* ChangeLog, THANKS: Added Tony Cheung.
2001-11-29 16:17 bastiaan
* ChangeLog, Makefile.am, configure.in, openvms/Makefile.am: Added
openvms build dir.
2001-11-29 13:03 bastiaan
* include/log4cpp/Portability.hh: use config-openvms.h based on
__OPENVMS__ flag.
2001-11-29 13:03 bastiaan
* src/snprintf.c: replaced static_cast with C-style cast: this file
should remain C only.
2001-11-29 01:02 bastiaan
* ChangeLog: Added portable snprintf(). Added config.h for
OpenVMS.
2001-11-29 01:02 bastiaan
* src/OstringStream.cpp: Added some #includes for portable
snprintf().
2001-11-29 00:52 bastiaan
* include/log4cpp/config-openvms.h: Added.
2001-11-29 00:29 bastiaan
* src/OstringStream.cpp: replace alternative snprintf with one in
snprintf.c.
2001-11-29 00:28 bastiaan
* src/snprintf.c: add static cast from void* to const char*.
2001-11-29 00:18 bastiaan
* src/snprintf.c: Initial revision
2001-11-29 00:18 bastiaan
* src/snprintf.c: import of Mark Martinecs portable snprintf() 2.2
2001-11-27 01:46 bastiaan
* include/log4cpp/config-win32.h: sync with #defines in
include/log4cpp/config.h.
2001-11-27 01:45 bastiaan
* ChangeLog: updates to tests/Makefile.am and tests/testConfig.cpp
2001-11-27 01:44 bastiaan
* tests/testConfig.cpp: read $srcdir for location of log4cpp.init
in order to fix distcheck target.
2001-11-27 01:44 bastiaan
* tests/Makefile.am: made log4cpp.init check_DATA.
2001-11-27 00:47 bastiaan
* ChangeLog: Changes to msvc6 & bcb5 project files,
RemoteSyslogAppender and SimpleConfigurator.
2001-11-27 00:45 bastiaan
* src/SimpleConfigurator.cpp: added support for
RemoteSyslogAppender.
2001-11-27 00:44 bastiaan
* bcb5/log4cpp/: log4cpp.bpf, log4cpp.bpr: Added TimeStamp class.
2001-11-27 00:43 bastiaan
* msvc6/log4cpp/log4cpp.dsp: Added TimeStamp, PatternLayout and
SimpleConfigurator classes.
2001-11-27 00:43 bastiaan
* include/log4cpp/RemoteSyslogAppender.hh: replaced #defines with
enum.
2001-11-26 02:15 bastiaan
* ChangeLog: Added and integrated new TimeStamp class.
2001-11-26 02:15 bastiaan
* tests/testPattern.cpp: included '%r' in test pattern.
2001-11-26 02:15 bastiaan
* include/log4cpp/LoggingEvent.hh,
include/log4cpp/PatternLayout.hh, src/BasicLayout.cpp,
src/LoggingEvent.cpp, src/PatternLayout.cpp: Use new TimeStamp
class.
2001-11-26 02:14 bastiaan
* configure.in: added test for 'ftime()' function.
2001-11-26 02:14 bastiaan
* include/log4cpp/Makefile.am, include/log4cpp/TimeStamp.hh,
src/Makefile.am, src/TimeStamp.cpp: added micro second precise
time stamp.
2001-11-23 19:06 bastiaan
* ChangeLog, include/log4cpp/Makefile.am, src/Makefile.am:
integrated SimpleConfigurator in autoconf.
2001-11-23 19:04 bastiaan
* tests/: Makefile.am, log4cpp.init, testConfig.cpp: added test for
SimpleConfigurator.
2001-11-23 19:03 bastiaan
* src/SimpleConfigurator.cpp: added support for comments in config
file (starting with a '#'). added support for SyslogAppender. use
Priority::getPriorityValue() to convert priorities.
2001-11-22 14:02 bastiaan
* ChangeLog: Updates to FixedContextCategory and m4 macro.
2001-11-09 11:34 bastiaan
* m4/CREATE_GENERIC_CONFIG.m4: escape $*
2001-11-09 10:58 bastiaan
* tests/testFixedContextCategory.cpp: Use contructor for
FixedContextCategory instead of assignment.
2001-11-09 10:57 bastiaan
* tests/testPattern.cpp: Removed carriage returns.
2001-11-08 10:59 bastiaan
* ChangeLog, m4/CREATE_GENERIC_CONFIG.m4: Fix /bin/sh
incompatibility on Solaris.
2001-11-05 18:03 bastiaan
* ChangeLog, include/log4cpp/Category.hh: Added private copy
constructor and assignment operator (pointed out by Shane Baker).
2001-11-01 13:01 bastiaan
* ChangeLog, include/log4cpp/Category.hh, src/Category.cpp: in
setAppender(Appender*): allow NULL Appender parameter.
2001-10-24 18:49 bastiaan
* ChangeLog: updates for configure.in, Priority and PatternLayout.
2001-10-24 18:44 bastiaan
* include/log4cpp/Priority.hh, src/Priority.cpp: Added
getPriorityValue() method.
2001-10-24 18:42 bastiaan
* configure.in: Added bcb5/testPattern/Makefile to AC_OUTPUT.
2001-10-23 13:46 bastiaan
* src/PatternLayout.cpp: Added support for sstream predating c++
stream libraries.
2001-10-23 11:15 bastiaan
* bcb5/testPattern/Makefile.am: Added empty Makefile.am
2001-10-05 14:51 uwej
* ChangeLog, bcb5/Makefile.am, bcb5/bcb5.bpg, bcb5/bcb5.mak,
bcb5/log4cpp/log4cpp.bpf, bcb5/log4cpp/log4cpp.bpr,
bcb5/log4cpp/log4cpp.mak, bcb5/testCategory/testCategory.bpr,
bcb5/testFixedContextCategory/testFixedContextCategory.bpr,
bcb5/testNDC/testNDC.bpr, bcb5/testPattern/testPattern.bpf,
bcb5/testPattern/testPattern.bpr,
bcb5/testPattern/testPattern.mak, bcb5/testmain/testmain.bpr,
include/log4cpp/SimpleConfigurator.hh,
include/log4cpp/config-win32.h, src/PatternLayout.cpp,
src/RemoteSyslogAppender.cpp, src/SimpleConfigurator.cpp,
tests/testPattern.cpp: Verify port to Borland C++; see ChangeLog
for details
2001-10-05 00:39 bastiaan
* ChangeLog, include/log4cpp/SimpleConfigurator.hh,
src/SimpleConfigurator.cpp: Added simple configurator class
contributed by Glenn Scott. Not usable yet.
2001-10-04 23:42 bastiaan
* src/Priority.cpp: getPriorityName(): use index 'priority' instead
of 'priority - 1'.
2001-10-04 23:33 bastiaan
* ChangeLog, include/log4cpp/LoggingEvent.hh, src/Priority.cpp:
src/Priority.cpp: fix conversion from PriorityLevel to
PriorityName.
2001-10-04 00:42 bastiaan
* ChangeLog: PatternLayout integration changes.
2001-10-04 00:35 bastiaan
* include/log4cpp/LoggingEvent.hh: Made all strings true member
variables. Coincidentally fixes PatternLayout.
2001-10-04 00:14 bastiaan
* Makefile.am, autogen.sh, configure.in, config/config.guess,
config/config.sub, config/ltmain.sh, config/missing,
config/mkinstalldirs, include/log4cpp/Makefile.am,
include/log4cpp/PatternLayout.hh, m4/AC_C_INT64_T.m4,
src/Makefile.am, src/PatternLayout.cpp, tests/Makefile.am:
Integrated PatternLayout with autoconf. Does not pass make check
yet, grrr.
2001-09-19 10:23 bastiaan
* ChangeLog, include/log4cpp/PatternLayout.hh,
src/PatternLayout.cpp, tests/testPattern.cpp: Added PatternLayout
contributed by Glenn Scott. Is not in autoconf setup yet.
2001-09-19 10:19 bastiaan
* THANKS: Added Glenn Scott.
2001-09-18 17:42 bastiaan
* ChangeLog, configure.in, m4/AC_FUNC_SNPRINTF.m4: Relax snprintf()
check: full C99 compliancy is not needed. Added checks for
-lsocket and -lnsl
2001-09-18 16:35 bastiaan
* ChangeLog, include/config.h.in: Updates for 0.2.6
2001-09-18 16:33 bastiaan
* Makefile.am: Fix EXTRA_DIST m4 inclusion.
2001-09-18 16:32 bastiaan
* THANKS: Added Walter Stroebel.
2001-09-18 15:53 bastiaan
* bcb5/log4cpp/: log4cpp.bpf, log4cpp.bpr, log4cpp.mak: Added
RemoteSyslogAppender.
2001-09-18 15:52 bastiaan
* configure.in: Set requirement for Autoconf 2.50. Bumped version
to 0.2.6. Incremented LT_VERSION to 2:0:1.
2001-09-18 15:51 bastiaan
* include/log4cpp/LayoutAppender.hh: Made BasicLayout the
DefaultLayoutType.
2001-09-18 15:50 bastiaan
* include/log4cpp/FixedContextCategory.hh: Added default value for
context parameter in constructor.
2001-09-18 15:50 bastiaan
* config/Makefile.am: Added newline to keep broken tar utilities
happy.
2001-09-18 15:49 bastiaan
* include/log4cpp/Priority.hh: Fix workaround for #define DEBUG.
2001-08-23 23:39 bastiaan
* ChangeLog, include/log4cpp/Priority.hh: Added workaround for
#define DEBUG in EDK.h on Win32.
2001-07-24 02:10 bastiaan
* tests/testbench.cpp: Fixed core dump caused by reusing the same
Layout for two Appenders.
2001-07-18 15:46 jhenyal
* src/RemoteSyslogAppender.cpp: Removed a printf and broke up long
messages
2001-07-18 15:42 jhenyal
* src/RemoteSyslogAppender.cpp: Removed a printf and broke up long
messages
2001-07-17 15:06 jhenyal
* src/RemoteSyslogAppender.cpp: RemoteSyslogAppender is functional
2001-07-17 14:39 jhenyal
* src/RemoteSyslogAppender.cpp: Debugging
2001-07-17 14:17 jhenyal
* src/SyslogAppender.cpp: Bug in SyslogAppender corrected.
2001-07-17 14:12 jhenyal
* msvc6/log4cpp/log4cpp.dsp, src/RemoteSyslogAppender.cpp:
Debugging
2001-07-17 13:33 jhenyal
* include/log4cpp/RemoteSyslogAppender.hh,
src/RemoteSyslogAppender.cpp: Debugging
2001-07-17 13:27 jhenyal
* src/RemoteSyslogAppender.cpp: Debugging
2001-07-17 12:34 jhenyal
* include/log4cpp/RemoteSyslogAppender.hh,
src/RemoteSyslogAppender.cpp: Added RemoteSyslogAppender
2001-07-17 11:09 jhenyal
* include/log4cpp/Makefile.am, src/Makefile.am: Adding
RemoteSyslogAppender
2001-07-17 10:56 jhenyal
* include/log4cpp/RemoteSyslogAppender.hh,
src/RemoteSyslogAppender.cpp: Adding RemoteSyslog
2001-07-17 10:12 jhenyal
* include/log4cpp/RemoteSyslogAppender.hh,
src/RemoteSyslogAppender.cpp: Adding RemoteSyslogAppender
2001-07-16 14:50 uwej
* ChangeLog, bcb5/Makefile.am, bcb5/bcb5.mak,
bcb5/log4cpp/Makefile.am, bcb5/log4cpp/log4cpp.bpf,
bcb5/log4cpp/log4cpp.bpr, bcb5/log4cpp/log4cpp.mak,
bcb5/testCategory/Makefile.am,
bcb5/testCategory/testCategory.mak,
bcb5/testFixedContextCategory/Makefile.am,
bcb5/testFixedContextCategory/testFixedContextCategory.mak,
bcb5/testNDC/Makefile.am, bcb5/testNDC/testNDC.mak,
bcb5/testmain/Makefile.am, bcb5/testmain/testmain.mak: Added
makefiles for Borland make, adjusted project files to compile
CategoryStream.cpp
2001-06-17 23:34 bastiaan
* ChangeLog, include/log4cpp/Category.hh,
include/log4cpp/CategoryStream.hh, include/log4cpp/Makefile.am,
src/Category.cpp, src/CategoryStream.cpp, src/Makefile.am: Put
CategoryStream class into its own files.
2001-06-11 23:03 bastiaan
* ChangeLog, include/log4cpp/Makefile.am: Remove
include/log4cpp/config.h.
2001-06-11 23:03 bastiaan
* m4/AC_CREATE_PREFIX_CONFIG_H.m4: Fix to overwrite
include/log4cpp/config.h instead of append to it.
2001-06-11 01:12 bastiaan
* ChangeLog, Makefile.am: fix typos in debian and doc-dir targets.
2001-06-11 01:02 bastiaan
* ChangeLog, Makefile.am: only include *.m4 files in m4/ in dist.
2001-06-11 00:51 bastiaan
* ChangeLog, NEWS: Release as 0.2.5.
2001-06-08 01:11 bastiaan
* ChangeLog, configure.in, include/log4cpp/config-win32.h: Upped
version number to 0.2.5. Upped LT_VERSION to 1:0:0.
2001-06-08 01:10 bastiaan
* m4/AC_ECHO_MKFILE.m4: removed.
2001-06-08 01:06 bastiaan
* m4/: AC_AS_DIRNAME.m4, AC_AS_MKDIR_P.m4: removed.
2001-06-08 01:01 bastiaan
* config/Makefile.am: Recreated after accidental deletion.
2001-06-08 00:58 bastiaan
* config/: Makefile.am, config.guess, config.sub, install-sh,
ltconfig, ltmain.sh, missing, mkinstalldirs: Deleted generated
files.
2001-06-08 00:53 bastiaan
* m4/AC_CREATE_PREFIX_CONFIG_H.m4: replace ECHO_MKFILE with
AS_DIRNAME.
2001-06-07 22:17 bastiaan
* msvc6/log4cpp/log4cpp.dsp, ChangeLog, tests/testmain.cpp: renamed
Config.hh to Portability.hh.
2001-06-07 22:11 bastiaan
* ChangeLog, include/log4cpp/Config.hh,
include/log4cpp/Makefile.am, include/log4cpp/OstringStream.hh,
include/log4cpp/Portability.hh, src/Appender.cpp,
src/AppenderSkeleton.cpp, src/BasicLayout.cpp, src/Category.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/NDC.cpp,
src/OstreamAppender.cpp, src/OstringStream.cpp, src/Priority.cpp,
src/SimpleLayout.cpp, src/StringQueueAppender.cpp,
src/SyslogAppender.cpp: renamed Config.hh to Portability.hh.
2001-06-07 20:54 bastiaan
* ChangeLog: Fixes for set methods in Category and Filter.
2001-06-07 20:54 bastiaan
* src/Category.cpp: (setAppender): check whether old and new
Appender are the same object.
2001-06-07 20:53 bastiaan
* src/Filter.cpp: (setChainedFilter): check whether old and new
Filter are the same object.
2001-06-07 19:37 bastiaan
* ChangeLog: LayoutAppender updates.
2001-06-07 19:36 bastiaan
* src/LayoutAppender.cpp: use DefaultLayoutType to construct new
Layouts. check whether old Layout and new Layout are the same
object.
2001-06-07 19:35 bastiaan
* include/log4cpp/LayoutAppender.hh: typedef SimpleLayout as
DefaultLayoutType.
2001-06-06 22:41 bastiaan
* include/log4cpp/AppenderSkeleton.hh,
include/log4cpp/BasicLayout.hh,
include/log4cpp/HierarchyMaintainer.hh,
include/log4cpp/IdsaAppender.hh,
include/log4cpp/Log4cppCleanup.hh,
include/log4cpp/LoggingEvent.hh,
include/log4cpp/OstreamAppender.hh,
include/log4cpp/OstringStream.hh, include/log4cpp/Priority.hh,
include/log4cpp/SimpleLayout.hh,
include/log4cpp/SyslogAppender.hh, ChangeLog: Documentation
updates.
2001-06-06 14:40 uwej
* ChangeLog: commited config-win32.h and testmain
2001-06-06 14:36 uwej
* tests/testmain.cpp: added #ifdefs to make it compile with bcb
2001-06-06 14:35 uwej
* include/log4cpp/config-win32.h: added defines
2001-06-06 12:18 uwej
* bcb5/: log4cpp/log4cpp.bpr, testCategory/testCategory.bpr,
testFixedContextCategory/testFixedContextCategory.bpr,
testNDC/testNDC.bpr, testmain/testmain.bpr: no message
2001-06-06 00:43 bastiaan
* ChangeLog, include/log4cpp/Config-win32.hh,
include/log4cpp/Makefile.am, include/log4cpp/config-win32.h:
Added Config.hh, config-win32.h Removed Config-win32.hh
2001-06-06 00:13 bastiaan
* include/log4cpp/Config.hh: Added to CVS since it is no longer
generated by autoconf.
2001-06-04 14:25 bastiaan
* ChangeLog: Added AC_CREATE_GENERIC_CONFIG, obsoleted
log4cpp-config.in.
2001-06-04 14:25 bastiaan
* configure.in: added AC_CREATE_GENERIC_CONFIG, obsoleted
log4cpp-config.in.
2001-06-04 14:24 bastiaan
* Makefile.am: removed config.h copy from dist-hook.
2001-06-04 14:23 bastiaan
* m4/CREATE_GENERIC_CONFIG.m4: Added.
2001-06-03 15:43 bastiaan
* include/config.h.in: config.h.in is generated by autoheader,
removed from repository.
2001-06-03 15:42 bastiaan
* ChangeLog, configure.in, include/config.h.in: added
AC_CREATE_PREFIX_CONFIG_H for creation of
include/log4cpp/config.h (which has been removed from
AM_CONFIG_HEADER).
2001-06-03 15:41 bastiaan
* include/log4cpp/: Config.hh.in, Makefile.am: Config.hh.in:
removed Config.hh: copied from Config.hh.in. include
<log4cpp/config.h> and remove LOG4CPP_* defines. Makefile.am:
added config.h, removed Config.hh.in.
2001-06-03 15:40 bastiaan
* src/: Appender.cpp, AppenderSkeleton.cpp, BasicLayout.cpp,
Category.cpp, FileAppender.cpp, Filter.cpp,
FixedContextCategory.cpp, HierarchyMaintainer.cpp,
IdsaAppender.cpp, LayoutAppender.cpp, Log4cppCleanup.cpp,
LoggingEvent.cpp, NDC.cpp, OstreamAppender.cpp,
OstringStream.cpp, Priority.cpp, SimpleLayout.cpp,
StringQueueAppender.cpp, SyslogAppender.cpp: added inclusion of
<log4cpp/Config.hh>, prefixed autoconf #ifdefs with LOG4CPP_.
2001-06-03 15:39 bastiaan
* m4/: AC_AS_DIRNAME.m4, AC_AS_MKDIR_P.m4,
AC_CREATE_PREFIX_CONFIG_H.m4, AC_CXX_HAVE_SSTREAM.m4,
AC_ECHO_MKFILE.m4: Added.
2001-06-01 19:56 bastiaan
* ChangeLog, include/config.h.in, include/log4cpp/Priority.hh,
tests/Makefile.am, tests/testErrorCollision.cpp: Priority.hh:
#define ERROR workaround try 3, put fix inside
LOG4CPP_FIX_ERROR_COLLISION switch.
tests/testErrorCollision.cpp, tests/Makefile.am: added test for
#define ERROR workaround.
2001-05-30 00:56 bastiaan
* ChangeLog, Makefile.am, THANKS, configure.in, bcb5/Makefile.am,
bcb5/bcb5.bpg, bcb5/log4cpp/Makefile.am,
bcb5/log4cpp/log4cpp.bpf, bcb5/log4cpp/log4cpp.bpr,
bcb5/testCategory/Makefile.am,
bcb5/testCategory/testCategory.bpf,
bcb5/testCategory/testCategory.bpr,
bcb5/testFixedContextCategory/Makefile.am,
bcb5/testFixedContextCategory/testFixedContextCategory.bpf,
bcb5/testFixedContextCategory/testFixedContextCategory.bpr,
bcb5/testNDC/Makefile.am, bcb5/testNDC/testNDC.bpf,
bcb5/testNDC/testNDC.bpr, bcb5/testmain/Makefile.am,
bcb5/testmain/testmain.bpf, bcb5/testmain/testmain.bpr,
include/config-win32.h, include/log4cpp/Appender.hh,
include/log4cpp/AppenderSkeleton.hh,
include/log4cpp/BasicLayout.hh, include/log4cpp/Category.hh,
include/log4cpp/Config-win32.hh, include/log4cpp/Export.hh,
include/log4cpp/FileAppender.hh, include/log4cpp/Filter.hh,
include/log4cpp/FixedContextCategory.hh,
include/log4cpp/Layout.hh, include/log4cpp/LayoutAppender.hh,
include/log4cpp/LoggingEvent.hh, include/log4cpp/NDC.hh,
include/log4cpp/OstreamAppender.hh,
include/log4cpp/OstringStream.hh,
include/log4cpp/SimpleLayout.hh,
include/log4cpp/StringQueueAppender.hh, src/AppenderSkeleton.cpp,
src/Category.cpp, src/FileAppender.cpp,
src/HierarchyMaintainer.cpp, src/OstreamAppender.cpp,
tests/testCategory.cpp, tests/testFixedContextCategory.cpp: Merge
of Borland support patch by Uwe Jger <jaeger@varial.de>.
2001-05-30 00:04 bastiaan
* ChangeLog: #define ERROR workaround try 2.
2001-05-29 23:18 bastiaan
* include/log4cpp/Priority.hh: Hopefully fixed Win32 #define ERROR
misery now.
2001-05-28 02:29 bastiaan
* ChangeLog, include/log4cpp/Priority.hh: #define ERROR workaround.
2001-05-23 17:03 bastiaan
* ChangeLog, Makefile.am, log4cpp.spec.in: log4cpp.spec.in: run
ldconfig after install or uninstall. Upped release# to 3.
Makefile.am: in rpm target corrected top_srcdir variable name.
2001-05-18 23:57 bastiaan
* ChangeLog: Fixed distcheck and check target. Added m4 subdir.
Started adding throw() specifiers.
2001-05-18 23:49 bastiaan
* acinclude.m4, autogen.sh, configure.in, m4/.cvsignore,
m4/AC_CXX_HAVE_SSTREAM.m4, m4/AC_CXX_NAMESPACES.m4,
m4/AC_FUNC_SNPRINTF.m4, m4/BB_ENABLE_DOXYGEN.m4,
m4/PETI_PEDANTIC_GCC.m4: Created separate 'm4' directory for
autoconf macros. Most come from the autoconf macro archive:
http://cryp.to/autoconf-archive/
2001-05-18 23:22 bastiaan
* include/log4cpp/Category.hh, include/log4cpp/Config.hh,
include/log4cpp/FixedContextCategory.hh,
include/log4cpp/OstringStream.hh, include/log4cpp/Priority.hh,
src/Category.cpp, src/FixedContextCategory.cpp, src/Priority.cpp:
Started adding throw() specifications to methods.
2001-05-18 23:17 bastiaan
* Makefile.am, tests/Makefile.am: Fixed check target: it now runs
testNDC, testCategory and testFixedContextCategory for testing.
2001-05-18 22:32 bastiaan
* Makefile.am, doc/Doxyfile.in, doc/Makefile.am, src/Makefile.am,
tests/Makefile.am: Fixed distcheck target. Now we can do better
checking for a release.
2001-05-18 13:45 bastiaan
* include/config.h.in, include/log4cpp/Config.hh,
include/log4cpp/Priority.hh, src/OstringStream.cpp: Added FATAL
priority as alias to EMERG. Added inclusion of config.h in
OstringStream.cpp.
2001-05-14 18:20 bastiaan
* log4cpp.spec.in: Added log4cpp-config to devel RPM.
2001-05-07 00:48 bastiaan
* acinclude.m4, configure.in, src/OstringStream.cpp: Added autoconf
check for working snprintf.
2001-05-07 00:22 bastiaan
* include/log4cpp/Makefile.am: Add Config.hh.in to dist target.
2001-05-07 00:21 bastiaan
* acinclude.m4, configure.in, include/log4cpp/Config.hh.in: Use
macros from http://cryp.to/autoconf-archive/ and get rid of ugly
generation of inclode/log4cpp/Config.hh in configure.in.
2001-05-04 23:24 bastiaan
* include/config.h, Makefile.am: Fix dist tar ball for MSVC++
platform: dist-hook adds CR to line endings for .ds? files and
copies config.h.in to config.h.
2001-05-04 14:57 bastiaan
* tests/: testCategory.cpp, testFixedContextCategory.cpp,
testNDC.cpp, testNDCMain.cpp: Return 0 at end of main().
2001-05-04 13:55 bastiaan
* include/log4cpp/IdsaAppender.hh, src/IdsaAppender.cpp: string ->
std::string.
2001-04-26 20:22 bastiaan
* msvc6/: testCategory/testCategory.dsp, testNDC/testNDC.dsp:
Merged Steve Ostlinds patch.
2001-04-23 13:46 legoater
* include/log4cpp/FixedContextCategory.hh,
include/log4cpp/StringQueueAppender.hh,
src/FixedContextCategory.cpp: Added std:: to improve portability
on Compaq Tru64 C++
2001-04-21 23:50 bastiaan
* ChangeLog, Makefile.am: Added 'debian' target to Makefile for
building Debian packages.
2001-04-21 14:55 harkema
* debian/.cvsignore: Ignore Makefile and Makefile.in.
2001-04-21 14:39 harkema
* debian/rules: Check for autogen.sh so the debian scripts work
with both CVS checkouts and released tarballs. Removed a rm
command that should be in debian/rules.
2001-04-21 14:28 harkema
* debian/copyright: Fix a typo in the license name.
2001-04-21 14:24 harkema
* debian/liblog4cpp-doc.doc-base: Add doc-base template.
2001-04-21 14:23 harkema
* debian/: Makefile.am, changelog, control, liblog4cpp-dev.dirs,
liblog4cpp-dev.files, liblog4cpp-doc.dirs, liblog4cpp-doc.files,
liblog4cpp0-dev.dirs, liblog4cpp0-dev.files,
liblog4cpp0-doc.dirs, liblog4cpp0-doc.files, rules: Clean debian
packaging files. They build un-official packages for the contrib
section.
2001-04-21 00:49 bastiaan
* ChangeLog: Rerelease 0.2.4b
2001-04-21 00:41 bastiaan
* msvc6/: msvc6.dsw, log4cpp/log4cpp.dsp,
testCategory/testCategory.dsp, testNDC/testNDC.dsp: Stripped '\r'
characters from files: CVS will add them again on windows anyway.
Added StringQueueAppender and FixedContextCategory to
log4cpp.dsp.
2001-04-19 22:31 bastiaan
* msvc6/log4cpp/log4cpp.dsp: Added StringQueueAppnder and
FixedContextCategory classes.
2001-04-19 22:12 bastiaan
* ChangeLog, debian/Makefile.am, include/config.h,
msvc6/Makefile.am, msvc6/log4cpp/Makefile.am,
msvc6/testCategory/Makefile.am, msvc6/testNDC/Makefile.am: Added
files in debian and msvc6 subdirs to EXTRA_DIST in Makefile.am.
2001-04-18 23:50 bastiaan
* include/log4cpp/FixedContextCategory.hh: Moved the class
description to the correct place.
2001-04-18 19:25 bastiaan
* ChangeLog, Makefile.am, configure.in, debian/Makefile.am,
msvc6/Makefile.am, msvc6/log4cpp/Makefile.am,
msvc6/testCategory/Makefile.am, msvc6/testNDC/Makefile.am: Added
debian and msvc6 subdirs to autconf config: they were missing in
the dist target.
2001-04-17 22:36 bastiaan
* Makefile.am, log4cpp.spec.in, include/log4cpp/Category.hh,
include/log4cpp/FixedContextCategory.hh,
include/log4cpp/Makefile.am, src/Category.cpp,
src/FixedContextCategory.cpp, src/Makefile.am, tests/Makefile.am,
tests/testFixedContextCategory.cpp: Added FixedContextCategory
and corresponding text class.
2001-04-15 02:36 bastiaan
* include/log4cpp/Category.hh, src/Category.cpp: Made Category
constructor protected instead of private and made relevant
methods virtual. Now it's possible to subclass Category, at the
slightly higer cost of some virtual method invocations.
2001-04-14 03:12 bastiaan
* debian/copyright: LGPL = lesser general public license, as of
v2.1.
2001-04-14 01:03 bastiaan
* doc/Makefile.am: Removed all explicit mentions of 'log4cpp'. Now
the same Makefile.am can be reused in the cppunit project.
2001-04-13 17:27 bastiaan
* log4cpp.spec.in: Changed license from GPL to LGPL.
2001-04-12 09:04 bastiaan
* ChangeLog, README, debian/changelog, debian/control,
debian/copyright, debian/liblog4cpp0-dev.dirs,
debian/liblog4cpp0-dev.files, debian/liblog4cpp0-doc.dirs,
debian/liblog4cpp0-doc.files, debian/liblog4cpp0.dirs,
debian/liblog4cpp0.files, debian/liblog4cpp0.postinst,
debian/rules: Merged Marcel Harkema's patch for Debian package
support.
2001-04-11 22:44 bastiaan
* ChangeLog, Makefile.am, log4cpp.spec.in: Separated API docs from
devel RPM, into a doc RPM.
2001-04-11 22:19 bastiaan
* include/log4cpp/Config.hh, include/log4cpp/Makefile.am,
include/log4cpp/StringQueueAppender.hh, src/Makefile.am,
src/StringQueueAppender.cpp: Added StringQueueAppender class.
2001-04-11 22:19 bastiaan
* THANKS: Added Marcel Harkema.
2001-04-11 22:17 bastiaan
* include/log4cpp/NDC.hh: Added doxygen documentation comments.
2001-04-11 00:37 bastiaan
* tests/: NDCTest.hh, testNDCMain.cpp: First attempt to automate
testing using CppUnit. Needs CppUnit 1.5.3 + patch #403542 (see
sourceforge page).
2001-04-10 16:39 bastiaan
* tests/Clock.cpp: Make it compile on other platforms than Linux
and Tru64.
2001-04-10 09:18 bastiaan
* ChangeLog: Rerelease as 0.2.3b
2001-04-10 08:49 bastiaan
* msvc6/log4cpp/log4cpp.dsp: Fix bug #415059.
2001-04-10 08:46 bastiaan
* configure.in, include/log4cpp/Config.hh: Fix bug #415056. (remove
using namespace std;)
2001-04-09 20:21 bastiaan
* ChangeLog: Add bug #414958 to fixed bugs.
2001-04-09 20:15 bastiaan
* include/log4cpp/Config.hh, src/OstringStream.cpp: Changed
strprintf() to vstrprintf() to fix bug #414958.
2001-04-09 19:43 bastiaan
* tests/testCategory.cpp: Added test line for printf style logging:
ie. info("%s%d", "bla", 123)
2001-04-09 19:10 bastiaan
* ChangeLog, THANKS: Updated for release 0.2.3.
2001-04-09 14:33 bastiaan
* include/log4cpp/Config.hh, include/log4cpp/Hints.hh,
include/log4cpp/StreamUtil.hh, src/Hints.cpp, src/StreamUtil.cpp:
Removed obsolete Hints and StreamUtil files.
2001-04-09 00:35 bastiaan
* src/LoggingEvent.cpp: Type of priority is Priority::Value.
2001-04-09 00:28 bastiaan
* include/log4cpp/Filter.hh: Changed links to <code> items.
2001-04-08 03:50 bastiaan
* ChangeLog, INSTALL, README, configure.in, include/config.h: Upped
version number to 0.2.3.
2001-04-08 03:49 bastiaan
* include/log4cpp/Appender.hh, include/log4cpp/AppenderSkeleton.hh,
src/AppenderSkeleton.cpp: Fixed spelling of 'threshold'.
2001-04-08 03:49 bastiaan
* include/log4cpp/Filter.hh: Added DoxyGen comments.
2001-04-08 03:31 bastiaan
* src/Log4cppCleanup.cpp: Put debug print statements inside
#ifdefs. Should become calls to a 'LogLog' class.
2001-04-06 00:12 bastiaan
* src/OstringStream.cpp: Fixed memory leak: Bug tracker item
#412008.
2001-04-05 23:27 bastiaan
* msvc6/: log4cpp/log4cpp.dsp, testCategory/testCategory.dsp,
testNDC/testNDC.dsp: Integrated Steve Ostlinds patch for 0.2.3
2001-04-05 22:42 bastiaan
* TODO: Marked two items as done.
2001-04-02 22:46 bastiaan
* src/FileAppender.cpp: Got rid of c_str() in _append().
2001-03-28 18:51 legoater
* include/log4cpp/OstringStream.hh, src/Appender.cpp,
src/HierarchyMaintainer.cpp, src/OstringStream.cpp,
tests/testCategory.cpp: MSVC++ porting update
2001-03-28 08:58 legoater
* include/log4cpp/Config.hh: Added Config.hh for MSVC++.
2001-03-27 18:14 legoater
* tests/: Clock.cpp, Clock.hh: Fixed portability problems.
2001-03-27 14:32 legoater
* src/Log4cppCleanup.cpp, src/OstringStream.cpp, tests/Clock.cpp:
Ported to Tru64 C++ V6.2.
2001-03-26 21:51 legoater
* configure.in, include/log4cpp/Appender.hh,
include/log4cpp/AppenderSkeleton.hh, include/log4cpp/Category.hh,
include/log4cpp/Hints.hh, include/log4cpp/Log4cppCleanup.hh,
include/log4cpp/Makefile.am, include/log4cpp/OstringStream.hh,
src/BasicLayout.cpp, src/Category.cpp, src/FileAppender.cpp,
src/Filter.cpp, src/HierarchyMaintainer.cpp, src/Hints.cpp,
src/LayoutAppender.cpp, src/Log4cppCleanup.cpp, src/Makefile.am,
src/OstringStream.cpp, src/SimpleLayout.cpp: Enhanced
configuration system.
2001-03-22 22:09 bastiaan
* include/log4cpp/Category.hh, src/Category.cpp,
tests/testCategory.cpp: Changed CategoryStream::Separator to type
enum. This should also resolve the 'ambiguous operators' problem
with MSVC6.0. Fixed bug in CategoryStream::operator<<: it was
not logging messages in case it needed to alloc a new
ostringstream.
2001-03-14 23:33 bastiaan
* include/log4cpp/Appender.hh, include/log4cpp/AppenderSkeleton.hh,
include/log4cpp/Filter.hh, include/log4cpp/Makefile.am,
src/AppenderSkeleton.cpp, src/Filter.cpp, src/Makefile.am: Added
Filter class, for customized filtering of LoggingEvents in
Appender.
2001-03-14 01:28 bastiaan
* include/log4cpp/Appender.hh, include/log4cpp/AppenderSkeleton.hh,
include/log4cpp/IdsaAppender.hh,
include/log4cpp/LayoutAppender.hh, include/log4cpp/Makefile.am,
include/log4cpp/SyslogAppender.hh, src/Appender.cpp,
src/AppenderSkeleton.cpp, src/IdsaAppender.cpp,
src/LayoutAppender.cpp, src/Makefile.am, src/SyslogAppender.cpp:
Split Appender in Appender and AppenderSkeleton, analogous to
log4j. AppenderSkeleton contains / will contain an implementation
of LoggingEvent filtering.
2001-03-14 00:37 bastiaan
* include/log4cpp/Appender.hh, include/log4cpp/Category.hh,
include/log4cpp/FileAppender.hh, include/log4cpp/Hints.hh,
include/log4cpp/IdsaAppender.hh, include/log4cpp/LoggingEvent.hh,
include/log4cpp/OstreamAppender.hh, include/log4cpp/Priority.hh,
include/log4cpp/SyslogAppender.hh, src/Appender.cpp,
src/Category.cpp, src/FileAppender.cpp, src/IdsaAppender.cpp,
src/Log4cppCleanup.cpp, src/OstreamAppender.cpp,
src/SyslogAppender.cpp: Added Priority tresholds to Appender,
from now on, derived classs should implement _append() and not
doAppend(). typedeffed Priority::Value and replaced appropriate
occurences of 'int' with it.
2001-03-12 22:27 legoater
* log4cpp-config.in: [no log message]
2001-03-12 22:22 legoater
* Makefile.am, configure.in, include/config.h, include/config.h.in,
include/log4cpp/Hints.hh, include/log4cpp/Makefile.am,
include/log4cpp/config.h, include/log4cpp/config.h.in,
src/IdsaAppender.cpp, src/Makefile.am, src/StreamUtil.cpp,
src/SyslogAppender.cpp: Changed log4cpp configuration system.
2001-03-12 20:24 bastiaan
* configure.in: Check for doxygen and dot only when needed.
2001-03-12 10:35 bastiaan
* src/SimpleLayout.cpp: Forgot 'return' in format().
2001-03-12 02:46 bastiaan
* ChangeLog, include/log4cpp/Appender.hh,
include/log4cpp/Category.hh,
include/log4cpp/HierarchyMaintainer.hh,
include/log4cpp/Log4cppCleanup.hh, include/log4cpp/Makefile.am,
src/Appender.cpp, src/Category.cpp, src/HierarchyMaintainer.cpp,
src/Log4cppCleanup.cpp, src/Makefile.am, tests/testCategory.cpp,
tests/testbench.cpp: Added cleanup mechanism. Now log4cpp frees
all memory upon exit, via the destructor of a static
Log4cppCleanup instance.
2001-03-11 22:42 bastiaan
* Makefile.am, configure.in, doc/Doxyfile.in,
include/log4cpp/FileAppender.hh,
include/log4cpp/LayoutAppender.hh, include/log4cpp/Makefile.am,
include/log4cpp/OstreamAppender.hh, src/FileAppender.cpp,
src/LayoutAppender.cpp, src/Makefile.am, src/OstreamAppender.cpp,
tests/testCategory.cpp, tests/testbench.cpp, tests/testmain.cpp:
Added abstract class LayoutAppender, the superclass of all
Appenders that use a layout. Changed memory management for
Layout: a LayoutAppender owns its Layout, therefore it is illegal
from now on to set the same Layout instance to two Appenders.
Added autoconf options for doxygen: --enable-doxygen,
--enable-dot, enable-html-docs, --enable-latex-docs.
2001-03-08 09:26 legoater
* tests/.cvsignore: CVS repository cleanup.
2001-03-08 09:23 legoater
* tests/: Clock.cpp, Clock.hh: Added CPU clock support with
CLOCK_USE_CPU environment variable.
2001-03-08 09:22 legoater
* include/log4cpp/Makefile.am, tests/Makefile.am: Fixed .hh files
distribution.
2001-03-08 00:30 bastiaan
* include/log4cpp/Appender.hh, include/log4cpp/BasicLayout.hh,
include/log4cpp/Layout.hh, include/log4cpp/SimpleLayout.hh,
include/log4cpp/config.h, src/Appender.cpp, src/BasicLayout.cpp,
src/FileAppender.cpp, src/OstreamAppender.cpp,
src/SimpleLayout.cpp, src/SyslogAppender.cpp,
tests/testbench.cpp: Changed Layout::format() to return a
std::string instead of a char *. Set a default Layout (currently
SimpleLayout) in File- and OstreamAppender until application sets
one.
2001-03-07 23:17 bastiaan
* ChangeLog, include/log4cpp/Hints.hh,
include/log4cpp/StreamUtil.hh, include/log4cpp/config.h,
src/BasicLayout.cpp, src/Category.cpp, src/Hints.cpp,
src/Makefile.am, src/SimpleLayout.cpp, src/StreamUtil.cpp:
Separated StreamUtil class from Hints. Removed StreamUtil::str()
and use ostringstream::str() everywhere.
2001-03-06 15:29 legoater
* include/log4cpp/Makefile.am: Added config.h in install.
2001-03-06 15:28 legoater
* .cvsignore: CVS repository cleanup.
2001-03-05 15:19 legoater
* .cvsignore, aclocal.m4, configure: CVS repository cleanup.
2001-03-05 15:10 legoater
* include/log4cpp/.cvsignore, src/.cvsignore, src/stamp-h.in: CVS
repository cleanup.
2001-03-05 15:02 legoater
* doc/.cvsignore: CVS repository cleanup.
2001-03-05 15:00 legoater
* doc/.cvsignore, src/.cvsignore: CVS repository cleanup
2001-03-05 14:57 legoater
* .cvsignore, Makefile.in, configure, config/.cvsignore,
config/Makefile.in, doc/.cvsignore, doc/Makefile.in,
include/.cvsignore, include/Makefile.in,
include/log4cpp/.cvsignore, include/log4cpp/Makefile.in,
include/log4cpp/config.h, src/.cvsignore, src/Makefile.in,
tests/.cvsignore, tests/Makefile.in: CVS repository clean up.
2001-03-04 17:41 bastiaan
* Makefile.am, Makefile.in, configure, configure.in,
config/Makefile.in, doc/Makefile.am, doc/Makefile.in,
include/Makefile.in, include/log4cpp/Category.hh,
include/log4cpp/Hints.hh, include/log4cpp/Makefile.in,
include/log4cpp/config.h, include/log4cpp/config.h.in,
src/BasicLayout.cpp, src/Category.cpp, src/Hints.cpp,
src/IdsaAppender.cpp, src/Makefile.in, src/SimpleLayout.cpp,
src/SyslogAppender.cpp, src/config.h, src/config.h.in,
tests/Makefile.in: Started transition from ostrstream to
ostringstream: Added autoconf tests for new iostreams.
Hints.hh/cpp do no longer check for compilers and compiler
versions to decide on the iostream version, but use the defines
from config.h Moved config.h from src to include/log4cpp, because
it's needed by other header files (Hints.hh)
2001-03-04 00:17 bastiaan
* THANKS: Added Marc and Lynn.
2001-03-04 00:11 bastiaan
* ChangeLog, NEWS, configure.in: Upped version to 0.2.2
2001-03-03 22:49 bastiaan
* msvc6/msvc6.dsw, msvc6/testCategory/testCategory.dsp,
msvc6/testNDC/testNDC.dsp, tests/Makefile.am, tests/Makefile.in,
tests/testCategory.cpp: Added testCategory class, derived from
testmain, but focussing only on Category. Also added MSVC++
project files for testCategory and testNDC.
2001-03-03 20:59 bastiaan
* Makefile.am, Makefile.in, doc/Makefile.am, doc/Makefile.in: Added
doc-dist target. It creates a tar ball containing the Doxygen
generated HTML docs.
2001-03-03 20:26 bastiaan
* doc/html/: Appender_cpp.html, BasicLayout_cpp.html,
Category_cpp.html, FileAppender_cpp.html,
HierarchyMaintainer_cpp.html, Hints_cpp.html, Hints_hh.html,
IdsaAppender_cpp.html, IdsaAppender_hh-source.html,
IdsaAppender_hh.html, LoggingEvent_cpp.html, NDC_cpp.html,
OstreamAppender_cpp.html, Priority_cpp.html,
SimpleLayout_cpp.html, SyslogAppender_cpp.html,
class_log4cpp__IdsaAppender-members.html,
class_log4cpp__IdsaAppender.gif,
class_log4cpp__IdsaAppender.html, Appender_cpp-source.html,
BasicLayout_cpp-source.html, Category_cpp-source.html,
FileAppender_cpp-source.html,
HierarchyMaintainer_cpp-source.html, Hints_cpp-source.html,
Hints_hh-source.html, IdsaAppender_cpp-source.html,
LoggingEvent_cpp-source.html, NDC_cpp-source.html,
OstreamAppender_cpp-source.html, Priority_cpp-source.html,
SimpleLayout_cpp-source.html, SyslogAppender_cpp-source.html,
struct_log4cpp__CategoryStream__Separator.html,
struct_log4cpp__LoggingEvent-members.html,
struct_log4cpp__LoggingEvent.html,
struct_log4cpp__NDC__DiagnosticContext-members.html,
struct_log4cpp__NDC__DiagnosticContext.html: Removing generated
documentation from repository.
2001-02-28 11:33 legoater
* .cvsignore: Added .cvsignore file.
2001-02-28 11:26 legoater
* autogen.sh: Added autoconf setup script.
2001-02-28 11:24 legoater
* config/.cvsignore, doc/.cvsignore, include/.cvsignore,
include/log4cpp/.cvsignore, src/.cvsignore, tests/.cvsignore:
Added .cvsignore files
2001-02-27 19:14 bastiaan
* src/config.h: Added config.h with safe defaults for the
./configure impaired.
2001-02-26 23:26 bastiaan
* include/log4cpp/LoggingEvent.hh: Made threadName a member to keep
MSVC++ from crashing.
2001-02-25 16:48 bastiaan
* ChangeLog, msvc6/msvc6.dsw, msvc6/log4cpp/log4cpp.dsp: Add msvc
dir, workspace and project file.
2001-02-24 01:40 bastiaan
* Makefile.in, configure, configure.in, doc/html/Appender_cpp.html,
doc/html/BasicLayout_cpp.html, doc/html/Category_cpp.html,
doc/html/FileAppender_cpp.html,
doc/html/HierarchyMaintainer_cpp.html, doc/html/Hints_cpp.html,
doc/html/Hints_hh.html, doc/html/IdsaAppender_cpp.html,
doc/html/IdsaAppender_hh-source.html,
doc/html/IdsaAppender_hh.html, doc/html/LoggingEvent_cpp.html,
doc/html/NDC_cpp.html, doc/html/OstreamAppender_cpp.html,
doc/html/Priority_cpp.html, doc/html/SimpleLayout_cpp.html,
doc/html/SyslogAppender_cpp.html,
doc/html/class_log4cpp__IdsaAppender-members.html,
doc/html/class_log4cpp__IdsaAppender.html,
include/log4cpp/Appender.hh, include/log4cpp/Hints.hh,
include/log4cpp/LoggingEvent.hh, src/Category.cpp,
src/FileAppender.cpp, src/HierarchyMaintainer.cpp, src/Hints.cpp,
src/OstreamAppender.cpp, src/SyslogAppender.cpp, src/config.h.in:
Merged in changes for Win32 MSVC6 support from Owen Lynn.
2001-02-16 16:01 bastiaan
* include/log4cpp/LoggingEvent.hh, src/LoggingEvent.cpp: Moved
#include <time.h> from LoggingEvent.cpp to LoggingEvent.hh
2001-02-15 19:47 bastiaan
* ChangeLog, README: Updated license info to GNU Lesser General
Public License.
2001-02-15 14:38 bastiaan
* COPYING, ChangeLog, NEWS, configure, configure.in: Incremented
version to 0.2.1. Changed license to LGPL.
2001-01-25 18:05 legoater
* src/Category.cpp, include/log4cpp/Category.hh: added EMER, ALERT,
CRIT and NOTICE shortcuts methods.
2000-12-22 23:25 bastiaan
* Makefile.in, aclocal.m4, configure, configure.in: Added
log4cpp.spec to AC_OUTPUT in configure.in
2000-12-22 14:22 legoater
* log4cpp.spec.in, tests/Clock.cpp, tests/Clock.hh,
tests/testbench.cpp: [no log message]
2000-12-22 10:50 bastiaan
* ChangeLog, Makefile.am, Makefile.in, TODO, aclocal.m4, configure,
configure.in, doc/Makefile.am, doc/Makefile.in,
doc/html/Appender_cpp-source.html, doc/html/Appender_cpp.html,
doc/html/Appender_hh-source.html, doc/html/Appender_hh.html,
doc/html/BasicLayout_cpp-source.html,
doc/html/BasicLayout_cpp.html,
doc/html/BasicLayout_hh-source.html,
doc/html/BasicLayout_hh.html, doc/html/Category_cpp-source.html,
doc/html/Category_cpp.html, doc/html/Category_hh-source.html,
doc/html/Category_hh.html, doc/html/FileAppender_cpp-source.html,
doc/html/FileAppender_cpp.html,
doc/html/FileAppender_hh-source.html,
doc/html/FileAppender_hh.html,
doc/html/HierarchyMaintainer_cpp-source.html,
doc/html/HierarchyMaintainer_cpp.html,
doc/html/HierarchyMaintainer_hh-source.html,
doc/html/HierarchyMaintainer_hh.html,
doc/html/Hints_cpp-source.html, doc/html/Hints_cpp.html,
doc/html/Hints_hh-source.html, doc/html/Hints_hh.html,
doc/html/IdsaAppender_cpp-source.html,
doc/html/IdsaAppender_cpp.html,
doc/html/IdsaAppender_hh-source.html,
doc/html/IdsaAppender_hh.html, doc/html/Layout_hh-source.html,
doc/html/Layout_hh.html, doc/html/LoggingEvent_cpp-source.html,
doc/html/LoggingEvent_cpp.html,
doc/html/LoggingEvent_hh-source.html,
doc/html/LoggingEvent_hh.html, doc/html/NDC_cpp-source.html,
doc/html/NDC_cpp.html, doc/html/NDC_hh-source.html,
doc/html/NDC_hh.html, doc/html/OstreamAppender_cpp-source.html,
doc/html/OstreamAppender_cpp.html,
doc/html/OstreamAppender_hh-source.html,
doc/html/OstreamAppender_hh.html,
doc/html/Priority_cpp-source.html, doc/html/Priority_cpp.html,
doc/html/Priority_hh-source.html, doc/html/Priority_hh.html,
doc/html/SimpleLayout_cpp-source.html,
doc/html/SimpleLayout_cpp.html,
doc/html/SimpleLayout_hh-source.html,
doc/html/SimpleLayout_hh.html,
doc/html/SyslogAppender_cpp-source.html,
doc/html/SyslogAppender_cpp.html,
doc/html/SyslogAppender_hh-source.html,
doc/html/SyslogAppender_hh.html, doc/html/annotated.html,
doc/html/class_log4cpp__Appender-members.html,
doc/html/class_log4cpp__Appender.gif,
doc/html/class_log4cpp__Appender.html,
doc/html/class_log4cpp__BasicLayout-members.html,
doc/html/class_log4cpp__BasicLayout.gif,
doc/html/class_log4cpp__BasicLayout.html,
doc/html/class_log4cpp__Category-members.html,
doc/html/class_log4cpp__Category.html,
doc/html/class_log4cpp__CategoryStream-members.html,
doc/html/class_log4cpp__CategoryStream.html,
doc/html/class_log4cpp__CategoryStream__Separator.html,
doc/html/class_log4cpp__FileAppender-members.html,
doc/html/class_log4cpp__FileAppender.gif,
doc/html/class_log4cpp__FileAppender.html,
doc/html/class_log4cpp__HierarchyMaintainer-members.html,
doc/html/class_log4cpp__HierarchyMaintainer.html,
doc/html/class_log4cpp__IdsaAppender-members.html,
doc/html/class_log4cpp__IdsaAppender.gif,
doc/html/class_log4cpp__IdsaAppender.html,
doc/html/class_log4cpp__Layout-members.html,
doc/html/class_log4cpp__Layout.gif,
doc/html/class_log4cpp__Layout.html,
doc/html/class_log4cpp__LoggingEvent-members.html,
doc/html/class_log4cpp__LoggingEvent.html,
doc/html/class_log4cpp__NDC-members.html,
doc/html/class_log4cpp__NDC.html,
doc/html/class_log4cpp__NDC__DiagnosticContext-members.html,
doc/html/class_log4cpp__NDC__DiagnosticContext.html,
doc/html/class_log4cpp__OstreamAppender-members.html,
doc/html/class_log4cpp__OstreamAppender.gif,
doc/html/class_log4cpp__OstreamAppender.html,
doc/html/class_log4cpp__Priority-members.html,
doc/html/class_log4cpp__Priority.html,
doc/html/class_log4cpp__SimpleLayout-members.html,
doc/html/class_log4cpp__SimpleLayout.gif,
doc/html/class_log4cpp__SimpleLayout.html,
doc/html/class_log4cpp__SyslogAppender-members.html,
doc/html/class_log4cpp__SyslogAppender.gif,
doc/html/class_log4cpp__SyslogAppender.html,
doc/html/doxygen.css, doc/html/doxygen.gif, doc/html/files.html,
doc/html/functions.html, doc/html/hierarchy.html,
doc/html/index.html, doc/html/namespace_log4cpp.html,
doc/html/namespaces.html, doc/html/null.gif,
doc/html/struct_log4cpp__CategoryStream__Separator.html,
doc/html/struct_log4cpp__LoggingEvent-members.html,
doc/html/struct_log4cpp__LoggingEvent.html,
doc/html/struct_log4cpp__NDC__DiagnosticContext-members.html,
doc/html/struct_log4cpp__NDC__DiagnosticContext.html,
src/Hints.cpp, tests/Makefile.am, tests/Makefile.in: Merged in
patches from Cedric Le Goater: fixed --with-idsa added RPM spec
file added testbench
Also update of regenerated API docs. Added TODO file.
2000-12-18 23:28 bastiaan
* ChangeLog, configure, configure.in, include/log4cpp/Makefile.am,
include/log4cpp/Makefile.in, src/IdsaAppender.cpp,
src/Makefile.am, src/Makefile.in, src/config.h.in: Added
--with-idsa switch to configure. Probably screwed Cedrics hacks
in autoconf.
2000-12-14 22:57 bastiaan
* include/log4cpp/IdsaAppender.hh, src/IdsaAppender.cpp: Added
IdsaAppender class for logging to Marc Welz's Idsa system.
2000-12-13 22:43 bastiaan
* configure, configure.in, config/ltconfig, config/ltmain.sh,
include/log4cpp/Appender.hh, include/log4cpp/Category.hh,
include/log4cpp/HierarchyMaintainer.hh, include/log4cpp/Hints.hh,
include/log4cpp/Layout.hh, include/log4cpp/Makefile.am,
include/log4cpp/Makefile.in, include/log4cpp/NDC.hh,
include/log4cpp/OstreamAppender.hh, src/BasicLayout.cpp,
src/Category.cpp, src/HierarchyMaintainer.cpp, src/Hints.cpp,
src/Makefile.am, src/Makefile.in, src/OstreamAppender.cpp,
src/SimpleLayout.cpp, tests/testNDC.cpp, tests/testmain.cpp:
Integrated Cedric Le Goaters patches for Tru64 support and better
g++-3 compliance.
2000-12-12 22:49 bastiaan
* include/log4cpp/NDC.hh: Making NDC() and ~NDC() protected was
overly paranoid. They're public now.
2000-12-12 00:20 bastiaan
* Makefile, configure, configure.in, include/log4cpp/Appender.hh,
include/log4cpp/Category.hh, include/log4cpp/FileAppender.hh,
include/log4cpp/HierarchyMaintainer.hh,
include/log4cpp/Layout.hh, include/log4cpp/LoggingEvent.hh,
include/log4cpp/NDC.hh, include/log4cpp/OstreamAppender.hh,
include/log4cpp/Priority.hh, include/log4cpp/SyslogAppender.hh,
src/Appender.cpp, src/BasicLayout.cpp, src/Category.cpp,
src/FileAppender.cpp, src/HierarchyMaintainer.cpp,
src/LoggingEvent.cpp, src/Makefile, src/NDC.cpp,
src/OstreamAppender.cpp, src/Priority.cpp, src/SimpleLayout.cpp,
src/SyslogAppender.cpp: Merged in patches for Tru64. Renamed
string to std::string Renumbered library version to 0.2.0
(instead of 1.0.0)
2000-12-11 11:15 bastiaan
* Makefile, Makefile.am, Makefile.in, src/Makefile: Added forgotten
Makefile templates in topdir.
2000-12-10 04:24 bastiaan
* AUTHORS, INSTALL, NEWS, THANKS, aclocal.m4, configure,
configure.in, doxygen.config, config/Makefile.am,
config/Makefile.in, config/config.guess, config/config.sub,
config/install-sh, config/ltconfig, config/ltmain.sh,
config/missing, config/mkinstalldirs, doc/Doxyfile.in,
doc/Makefile.am, doc/Makefile.in, include/Makefile.am,
include/Makefile.in, include/log4cpp/Appender.hh,
include/log4cpp/BasicLayout.hh, include/log4cpp/Category.hh,
include/log4cpp/FileAppender.hh,
include/log4cpp/HierarchyMaintainer.hh,
include/log4cpp/Layout.hh, include/log4cpp/LoggingEvent.hh,
include/log4cpp/Makefile.am, include/log4cpp/Makefile.in,
include/log4cpp/NDC.hh, include/log4cpp/OstreamAppender.hh,
include/log4cpp/Priority.hh, include/log4cpp/SimpleLayout.hh,
include/log4cpp/SyslogAppender.hh, src/Appender.cpp,
src/BasicLayout.cpp, src/Category.cpp, src/FileAppender.cpp,
src/HierarchyMaintainer.cpp, src/LoggingEvent.cpp,
src/Makefile.am, src/Makefile.in, src/NDC.cpp,
src/OstreamAppender.cpp, src/Priority.cpp, src/SimpleLayout.cpp,
src/SyslogAppender.cpp, src/config.h.in, src/stamp-h.in,
tests/Makefile.am, tests/Makefile.in: Integrated
autoconf/automake setup contributed by Cedric Le Goater
<cedric@legoater.com>.
2000-12-10 04:18 bastiaan
* CHANGELOG, ChangeLog: Renamed CHANGELOG to ChangeLog for GNU
conformance.
2000-12-10 04:16 bastiaan
* COPYING, LICENSE: Renamed LICENSE file for GNU conformance.
2000-12-10 04:15 bastiaan
* src/testNDC.cpp, src/testmain.cpp, tests/testNDC.cpp,
tests/testmain.cpp: Moved tests to separate test directory.
2000-12-09 00:38 bastiaan
* doc/html/Appender_hh-source.html, doc/html/Appender_hh.html,
doc/html/BasicLayout_hh-source.html,
doc/html/BasicLayout_hh.html, doc/html/Category_hh-source.html,
doc/html/Category_hh.html, doc/html/FileAppender_hh-source.html,
doc/html/FileAppender_hh.html,
doc/html/HierarchyMaintainer_hh-source.html,
doc/html/HierarchyMaintainer_hh.html,
doc/html/Layout_hh-source.html, doc/html/Layout_hh.html,
doc/html/LoggingEvent_hh-source.html,
doc/html/LoggingEvent_hh.html, doc/html/NDC_hh-source.html,
doc/html/NDC_hh.html, doc/html/OstreamAppender_hh-source.html,
doc/html/OstreamAppender_hh.html,
doc/html/Priority_hh-source.html, doc/html/Priority_hh.html,
doc/html/SimpleLayout_hh-source.html,
doc/html/SimpleLayout_hh.html,
doc/html/SyslogAppender_hh-source.html,
doc/html/SyslogAppender_hh.html, doc/html/annotated.html,
doc/html/class_log4cpp__Appender-members.html,
doc/html/class_log4cpp__Appender.html,
doc/html/class_log4cpp__BasicLayout-members.html,
doc/html/class_log4cpp__BasicLayout.html,
doc/html/class_log4cpp__Category-members.html,
doc/html/class_log4cpp__Category.html,
doc/html/class_log4cpp__CategoryStream-members.html,
doc/html/class_log4cpp__CategoryStream.html,
doc/html/class_log4cpp__CategoryStream__Separator.html,
doc/html/class_log4cpp__FileAppender-members.html,
doc/html/class_log4cpp__FileAppender.html,
doc/html/class_log4cpp__HierarchyMaintainer-members.html,
doc/html/class_log4cpp__HierarchyMaintainer.html,
doc/html/class_log4cpp__Layout-members.html,
doc/html/class_log4cpp__Layout.html,
doc/html/class_log4cpp__LoggingEvent-members.html,
doc/html/class_log4cpp__LoggingEvent.html,
doc/html/class_log4cpp__NDC-members.html,
doc/html/class_log4cpp__NDC.html,
doc/html/class_log4cpp__NDC__DiagnosticContext-members.html,
doc/html/class_log4cpp__NDC__DiagnosticContext.html,
doc/html/class_log4cpp__OstreamAppender-members.html,
doc/html/class_log4cpp__OstreamAppender.html,
doc/html/class_log4cpp__Priority-members.html,
doc/html/class_log4cpp__Priority.html,
doc/html/class_log4cpp__SimpleLayout-members.html,
doc/html/class_log4cpp__SimpleLayout.html,
doc/html/class_log4cpp__SyslogAppender-members.html,
doc/html/class_log4cpp__SyslogAppender.html, doc/html/files.html,
doc/html/functions.html, doc/html/hierarchy.html,
doc/html/index.html, doc/html/namespace_log4cpp.html,
doc/html/namespaces.html, include/log4cpp/Category.hh,
src/Category.cpp, src/testmain.cpp: Added log message terminator
(CategoryStream::ENDLINE) to CategoryStream, so you can stream
multiple objects into one message.
2000-12-08 11:42 bastiaan
* include/log4cpp/NDC.hh: ~NDC() is now public if g++ <= 2.95 is
used. g++ 2.96 and up can keep the protected destructor. Bug
reported by Louis Bayle.
2000-12-08 01:29 bastiaan
* doc/html/Appender_hh-source.html, doc/html/Appender_hh.html,
doc/html/BasicLayout_hh-source.html,
doc/html/BasicLayout_hh.html, doc/html/Category_hh-source.html,
doc/html/Category_hh.html, doc/html/FileAppender_hh-source.html,
doc/html/FileAppender_hh.html,
doc/html/HierarchyMaintainer_hh-source.html,
doc/html/HierarchyMaintainer_hh.html,
doc/html/Layout_hh-source.html, doc/html/Layout_hh.html,
doc/html/LoggingEvent_hh-source.html,
doc/html/LoggingEvent_hh.html, doc/html/NDC_hh-source.html,
doc/html/NDC_hh.html, doc/html/OstreamAppender_hh-source.html,
doc/html/OstreamAppender_hh.html,
doc/html/Priority_hh-source.html, doc/html/Priority_hh.html,
doc/html/SimpleLayout_hh-source.html,
doc/html/SimpleLayout_hh.html,
doc/html/SyslogAppender_hh-source.html,
doc/html/SyslogAppender_hh.html, doc/html/annotated.html,
doc/html/class_log4cpp__Appender-members.html,
doc/html/class_log4cpp__Appender.html,
doc/html/class_log4cpp__BasicLayout-members.html,
doc/html/class_log4cpp__BasicLayout.html,
doc/html/class_log4cpp__Category-members.html,
doc/html/class_log4cpp__Category.html,
doc/html/class_log4cpp__CategoryStream-members.html,
doc/html/class_log4cpp__CategoryStream.html,
doc/html/class_log4cpp__FileAppender-members.html,
doc/html/class_log4cpp__FileAppender.html,
doc/html/class_log4cpp__HierarchyMaintainer-members.html,
doc/html/class_log4cpp__HierarchyMaintainer.html,
doc/html/class_log4cpp__Layout-members.html,
doc/html/class_log4cpp__Layout.html,
doc/html/class_log4cpp__LoggingEvent-members.html,
doc/html/class_log4cpp__LoggingEvent.html,
doc/html/class_log4cpp__NDC-members.html,
doc/html/class_log4cpp__NDC.html,
doc/html/class_log4cpp__NDC__DiagnosticContext-members.html,
doc/html/class_log4cpp__NDC__DiagnosticContext.html,
doc/html/class_log4cpp__OstreamAppender-members.html,
doc/html/class_log4cpp__OstreamAppender.html,
doc/html/class_log4cpp__Priority-members.html,
doc/html/class_log4cpp__Priority.html,
doc/html/class_log4cpp__SimpleLayout-members.html,
doc/html/class_log4cpp__SimpleLayout.html,
doc/html/class_log4cpp__SyslogAppender-members.html,
doc/html/class_log4cpp__SyslogAppender.html, doc/html/files.html,
doc/html/functions.html, doc/html/hierarchy.html,
doc/html/index.html, doc/html/namespace_log4cpp.html,
doc/html/namespaces.html, include/log4cpp/Category.hh,
src/Category.cpp, src/testmain.cpp: Added CategoryStream class,
which allows applications to stream objects to Category.
2000-12-07 22:27 bastiaan
* CHANGELOG: Release 0.1
2000-12-07 22:08 bastiaan
* doc/html/Appender_hh-source.html, doc/html/Appender_hh.html,
doc/html/BasicLayout_hh-source.html,
doc/html/BasicLayout_hh.html, doc/html/Category_hh-source.html,
doc/html/Category_hh.html, doc/html/FileAppender_hh-source.html,
doc/html/FileAppender_hh.html,
doc/html/HierarchyMaintainer_hh-source.html,
doc/html/HierarchyMaintainer_hh.html,
doc/html/Layout_hh-source.html, doc/html/Layout_hh.html,
doc/html/LoggingEvent_hh-source.html,
doc/html/LoggingEvent_hh.html, doc/html/NDC_hh-source.html,
doc/html/NDC_hh.html, doc/html/OstreamAppender_hh-source.html,
doc/html/OstreamAppender_hh.html,
doc/html/Priority_hh-source.html, doc/html/Priority_hh.html,
doc/html/SimpleLayout_hh-source.html,
doc/html/SimpleLayout_hh.html,
doc/html/SyslogAppender_hh-source.html,
doc/html/SyslogAppender_hh.html, doc/html/annotated.html,
doc/html/class_log4cpp__Appender-members.html,
doc/html/class_log4cpp__Appender.gif,
doc/html/class_log4cpp__Appender.html,
doc/html/class_log4cpp__BasicLayout-members.html,
doc/html/class_log4cpp__BasicLayout.html,
doc/html/class_log4cpp__Category-members.html,
doc/html/class_log4cpp__Category.html,
doc/html/class_log4cpp__FileAppender-members.html,
doc/html/class_log4cpp__FileAppender.html,
doc/html/class_log4cpp__HierarchyMaintainer-members.html,
doc/html/class_log4cpp__HierarchyMaintainer.html,
doc/html/class_log4cpp__Layout-members.html,
doc/html/class_log4cpp__Layout.html,
doc/html/class_log4cpp__LoggingEvent-members.html,
doc/html/class_log4cpp__LoggingEvent.html,
doc/html/class_log4cpp__NDC-members.html,
doc/html/class_log4cpp__NDC.html,
doc/html/class_log4cpp__NDC__DiagnosticContext-members.html,
doc/html/class_log4cpp__NDC__DiagnosticContext.html,
doc/html/class_log4cpp__OstreamAppender-members.html,
doc/html/class_log4cpp__OstreamAppender.gif,
doc/html/class_log4cpp__OstreamAppender.html,
doc/html/class_log4cpp__Priority-members.html,
doc/html/class_log4cpp__Priority.html,
doc/html/class_log4cpp__SimpleLayout-members.html,
doc/html/class_log4cpp__SimpleLayout.html,
doc/html/class_log4cpp__SyslogAppender-members.html,
doc/html/class_log4cpp__SyslogAppender.gif,
doc/html/class_log4cpp__SyslogAppender.html, doc/html/files.html,
doc/html/functions.html, doc/html/hierarchy.html,
doc/html/index.html, doc/html/namespace_log4cpp.html,
doc/html/namespaces.html, include/log4cpp/Appender.hh,
include/log4cpp/SyslogAppender.hh, src/Category.cpp,
src/FileAppender.cpp, src/HierarchyMaintainer.cpp, src/Makefile,
src/SyslogAppender.cpp, src/testmain.cpp: Added OstreamAppender
and SyslogAppender.
2000-12-06 22:45 bastiaan
* include/log4cpp/OstreamAppender.hh, src/Makefile,
src/OstreamAppender.cpp, src/testmain.cpp: Added OstreamAppender,
a simple Appender that logs to ostreams.
2000-12-05 23:12 bastiaan
* doxygen.config: Added missing doxygen config.
2000-12-05 23:09 bastiaan
* Makefile, doc/html/Appender_hh-source.html,
doc/html/Appender_hh.html, doc/html/BasicLayout_hh-source.html,
doc/html/BasicLayout_hh.html, doc/html/Category_hh-source.html,
doc/html/Category_hh.html, doc/html/FileAppender_hh-source.html,
doc/html/FileAppender_hh.html,
doc/html/HierarchyMaintainer_hh-source.html,
doc/html/HierarchyMaintainer_hh.html,
doc/html/Layout_hh-source.html, doc/html/Layout_hh.html,
doc/html/LoggingEvent_hh-source.html,
doc/html/LoggingEvent_hh.html, doc/html/NDC_hh-source.html,
doc/html/NDC_hh.html, doc/html/Priority_hh-source.html,
doc/html/Priority_hh.html, doc/html/SimpleLayout_hh-source.html,
doc/html/SimpleLayout_hh.html, doc/html/annotated.html,
doc/html/class_log4cpp__Appender-members.html,
doc/html/class_log4cpp__Appender.gif,
doc/html/class_log4cpp__Appender.html,
doc/html/class_log4cpp__BasicLayout-members.html,
doc/html/class_log4cpp__BasicLayout.gif,
doc/html/class_log4cpp__BasicLayout.html,
doc/html/class_log4cpp__Category-members.html,
doc/html/class_log4cpp__Category.html,
doc/html/class_log4cpp__FileAppender-members.html,
doc/html/class_log4cpp__FileAppender.gif,
doc/html/class_log4cpp__FileAppender.html,
doc/html/class_log4cpp__HierarchyMaintainer-members.html,
doc/html/class_log4cpp__HierarchyMaintainer.html,
doc/html/class_log4cpp__Layout-members.html,
doc/html/class_log4cpp__Layout.gif,
doc/html/class_log4cpp__Layout.html,
doc/html/class_log4cpp__LoggingEvent-members.html,
doc/html/class_log4cpp__LoggingEvent.html,
doc/html/class_log4cpp__NDC-members.html,
doc/html/class_log4cpp__NDC.html,
doc/html/class_log4cpp__NDC__DiagnosticContext-members.html,
doc/html/class_log4cpp__NDC__DiagnosticContext.html,
doc/html/class_log4cpp__Priority-members.html,
doc/html/class_log4cpp__Priority.html,
doc/html/class_log4cpp__SimpleLayout-members.html,
doc/html/class_log4cpp__SimpleLayout.gif,
doc/html/class_log4cpp__SimpleLayout.html, doc/html/doxygen.css,
doc/html/doxygen.gif, doc/html/files.html,
doc/html/functions.html, doc/html/hierarchy.html,
doc/html/index.html, doc/html/namespace_log4cpp.html,
doc/html/namespaces.html, doc/html/null.gif,
include/log4cpp/Category.hh,
include/log4cpp/HierarchyMaintainer.hh,
include/log4cpp/Layout.hh, include/log4cpp/LoggingEvent.hh,
src/Category.cpp, src/HierarchyMaintainer.cpp: Added doxygen
generated API docs. Most text is a verbatim copy of the log4j
docs.
2000-12-05 01:15 bastiaan
* include/log4cpp/BasicLayout.hh, include/log4cpp/NDC.hh,
include/log4cpp/SimpleLayout.hh, src/BasicLayout.cpp,
src/Category.cpp, src/Makefile, src/NDC.cpp, src/testNDC.cpp,
src/testmain.cpp: Added BasicLayout and NDC class
2000-12-04 00:53 bastiaan
* CHANGELOG, INSTALL, LICENSE, README, include/log4cpp/Appender.hh,
include/log4cpp/Category.hh, include/log4cpp/FileAppender.hh,
include/log4cpp/HierarchyMaintainer.hh,
include/log4cpp/Layout.hh, include/log4cpp/LoggingEvent.hh,
include/log4cpp/Priority.hh, include/log4cpp/SimpleLayout.hh,
src/Appender.cpp, src/Category.cpp, src/FileAppender.cpp,
src/HierarchyMaintainer.cpp, src/LoggingEvent.cpp, src/Makefile,
src/Priority.cpp, src/SimpleLayout.cpp, src/testmain.cpp: First
import of log4cpp.
2000-12-04 00:53 bastiaan
* CHANGELOG, INSTALL, LICENSE, README, include/log4cpp/Appender.hh,
include/log4cpp/Category.hh, include/log4cpp/FileAppender.hh,
include/log4cpp/HierarchyMaintainer.hh,
include/log4cpp/Layout.hh, include/log4cpp/LoggingEvent.hh,
include/log4cpp/Priority.hh, include/log4cpp/SimpleLayout.hh,
src/Appender.cpp, src/Category.cpp, src/FileAppender.cpp,
src/HierarchyMaintainer.cpp, src/LoggingEvent.cpp, src/Makefile,
src/Priority.cpp, src/SimpleLayout.cpp, src/testmain.cpp: Initial
revision
|