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
|
<?xml version="1.0" encoding="UTF-8"?>
<fpdoc-descriptions>
<package name="lazutils">
<!--
====================================================================
LazLoggerBase
====================================================================
-->
<module name="LazLoggerBase">
<short>Defines base logging classes used in the Lazarus IDE.</short>
<descr>
<p>
<file>lazloggerbase.pas</file> contains classes, types, and routines used to implement the base logging mechanisms used in the Lazarus IDE. Its primary usage, when used along with the LazLogger unit, is to provide output to the debugger in the Lazarus IDE.
</p>
<p>
Logger classes (and routines) are found in units like:
</p>
<dl>
<dt>LazLoggerBase.pas</dt>
<dd>
Provides the base TLazLogger class used as the common ancestor for other logger classes. Use this unit when you want to use the debugln routine. What LazLoggerBase does depends on whether the unit LazLogger is used in any other unit of your application. If LazLogger is not used, LazLoggerBase will install a "blackhole logger" that discards all log messages. If LazLogger is used anywhere, then all units using LazLoggerBase will write the log messages as described under "Logging Output"
</dd>
<dt>LazLogger.pas</dt>
<dd>
Provides a logger class which writes output to a file or file handle. Use this unit to activate the functionality of LazLogger.
</dd>
<dt>LazLoggerProfiling.pas</dt>
<dd>
Provides a logger class which captures memory usage and execution times.
</dd>
<dt>LazLoggerDummy.pas</dt>
<dd>
Re-implements the logger class methods with empty implementations. They are just calls to empty methods. This allows you to disable logging in a unit without the need to remove debugln statements.
</dd>
</dl>
<p>
The LazLoggerIntf.inc include file contains interface declarations for routines and operators which should be implemented in each of the units for the various loggers.
</p>
<p>
<b>Usage</b>
</p>
<p>
Add one of the logger classes to your application to enable output of logging messages to the destination supported in the logger class. By using the LazLogger unit, the following are enabled:
</p>
<ul>
<li>A single string, or list of (up to 15) strings: DebugLn('Foo'); DbgOut('a','b');</li>
<li>An array of const: DebugLn(['Foo=', 1, ' Bar=', anInteger]);</li>
<li>Same arguments as Format(). String + array of const: DbgOut('a %d',[1]);</li>
</ul>
<p>
Also there are tons of dbgs functions that converts common types to a string. For example dbgs(aRect) converts a variable of type TRect to a string.
</p>
<p>
<b>Logger output</b>
</p>
<dl>
<dt>Stdout/Console</dt>
<dd>
<p>
By default the output created by DebugLn is written to the stdout device. The output is silently discarded if stdout is not open. On Windows this is the default behavior, if project type "Application" is used to create a Windows GUI application. To get a console alongside your Windows GUI application, you need to uncheck the option "Win32 gui application (-WG)" under Project options / Compiler options / Config and Target / Target specific options. Alternatively you can add {$APPTYPE CONSOLE} at the top of your project .lpr file, or configure multiple "Build Modes" to control the -WG switch.
</p>
</dd>
<dt>File</dt>
<dd>
<p>
Debug output can also be written to file. The initialization code of the logging unit checks your program's command line parameters for --debug-log=<file> (In Lazarus: Run / Run Parameters / Command line parameters). On finding this parameter, any subsequent debug output is sent to <file>.
</p>
<p>
The param name can be changed with DebugLogger.ParamForLogFileName:='--debug-log'; This property exists only if the unit LazLogger is used. (LazLoggerBase does not define this property).
</p>
<p>
If no '--debug-log' command line parameter has been given, it next checks if an operating system environment variable xxx_debuglog exists, where xxx is the program file name without extension. E.g. for Lazarus this would be lazarus_debuglog. If such an environment variable exists, it uses the file specified in that environment variable as file to receive debug output.
</p>
</dd>
</dl>
<p>
<b>Multithreading</b>
</p>
<p>
DebugLn is thread safe, since Lazarus 2.0. Earlier versions of this text stated "since 1.0", but a further race condition was found and fixed for 2.0.
</p>
<p>
Calls to DbgOut, DebugLnEnter, DebugLnExit can be made from threads, but may not always format/indent the output correctly.
</p>
<p>
The creation/setup/destruction/configuration of the logger is not thread-safe, and should be done before threads are started. Creation is usually done automatically during unit initialization. But any properties (eg ParamForLogFileName) should be set before accessing the logger from threads.
</p>
<p>
Callback to events like OnDebugLn are made in each thread. The code in the callback must be thread save by itself. Changing the routine assigned to the property is <b>NOT</b> thread-safe.
</p>
<p>
This file is part of the <file>LazUtils</file> package.
</p>
</descr>
<!-- unresolved externals -->
<element name="Classes"/>
<element name="SysUtils"/>
<element name="Types"/>
<element name="Math"/>
<element name="LazClasses"/>
<element name="LazUTF8"/>
<!-- enumeration type Visibility: default -->
<element name="TLazLoggerLogGroupFlag">
<short>Represents flags used for Log Groups in TLazLogger.</short>
<descr/>
<seealso>
<link id="TLazLoggerLogGroup"/>
<link id="TLazLogger.RegisterLogGroup"/>
<link id="TLazLogger.LogGroupList"/>
</seealso>
</element>
<element name="TLazLoggerLogGroupFlag.lgfAddedByParamParser">
<short>
Not added using RegisterLogGroup in the logger class. This is a placeholder for the enabled-state given by the user via the command line.
</short>
</element>
<element name="TLazLoggerLogGroupFlag.lgfNoDefaultEnabledSpecified">
<short>Registered and enabled without a default group name.</short>
</element>
<!-- set type Visibility: default -->
<element name="TLazLoggerLogGroupFlags">
<short>Set type used to store values from the TLazLoggerLogGroupFlag enumeration.</short>
<descr>
<p>
TLazLoggerLogGroupFlags is the type used for the FLags member in TLazLoggerLogGroup.
</p>
</descr>
<seealso>
<link id="TLazLoggerLogGroup"/>
</seealso>
</element>
<!-- record type Visibility: default -->
<element name="TLazLoggerLogGroup">
<short>Record type with information about a log group in TLazLogger.</short>
<descr/>
<seealso>
<link id="TLazLogger.RegisterLogGroup"/>
<link id="TLazLogger.LogGroupList"/>
</seealso>
</element>
<!-- variable Visibility: default -->
<element name="TLazLoggerLogGroup.ConfigName">
<short>Case-insensitive name for the log group.</short>
<descr/>
<seealso/>
</element>
<!-- variable Visibility: default -->
<element name="TLazLoggerLogGroup.Enabled">
<short>True if the log group is enabled.</short>
<descr/>
<seealso/>
</element>
<!-- variable Visibility: default -->
<element name="TLazLoggerLogGroup.Flags">
<short>Flags which indicate how the log was created, and whether it is active.</short>
<descr/>
<seealso/>
</element>
<!-- variable Visibility: default -->
<element name="TLazLoggerLogGroup.FOpenedIndents">
<short>Member usesd to track the current indentation level for the log group.</short>
<descr/>
<seealso/>
</element>
<!-- pointer type Visibility: default -->
<element name="PLazLoggerLogGroup">
<short>Pointer to a TLazLoggerLogGroup instance.</short>
<descr/>
<seealso/>
</element>
<element name="TLazLoggerLogEnabled">
<short>Record type used to track an enabled log group.</short>
<descr/>
<seealso/>
</element>
<element name="TLazLoggerLogEnabled.Enabled">
<short/>
</element>
<element name="TLazLoggerLogEnabled.Group">
<short/>
</element>
<!-- enumeration type Visibility: default -->
<element name="TLazLoggerWriteTarget">
<short>Indicates the destination where output from a logger is written or stored.</short>
<descr/>
<seealso/>
</element>
<element name="TLazLoggerWriteTarget.lwtNone">
<short>Logger output is not written or stored... it is discarded.</short>
</element>
<element name="TLazLoggerWriteTarget.lwtStdOut">
<short>Logger output is written to the stdout device.</short>
</element>
<element name="TLazLoggerWriteTarget.lwtStdErr">
<short>Logger outout is written to the StdErr device.</short>
</element>
<element name="TLazLoggerWriteTarget.lwtTextFile">
<short>Logger output is written to a text file.</short>
</element>
<!-- procedure type Visibility: default -->
<element name="TLazLoggerWriteEvent">
<short>Specifies an event handler signalled to write logger output.</short>
<descr>
</descr>
<seealso>
</seealso>
</element>
<element name="TLazLoggerWriteEvent.Sender">
<short></short>
</element>
<element name="TLazLoggerWriteEvent.S">
<short></short>
</element>
<element name="TLazLoggerWriteEvent.Handled">
<short></short>
</element>
<!-- procedure type Visibility: default -->
<element name="TLazLoggerWidgetSetWriteEvent">
<short>
Specifies an event handler used to perform widgetset-specific debug log message handling.
</short>
<descr>
<p>
TLazLoggerWidgetSetWriteEvent is the type used for the OnWidgetSetDebugLn and OnWidgetSetDbgOut unit variables. Used primarily for the custom-drawn Android widgetset.
</p>
</descr>
<seealso>
</seealso>
</element>
<element name="TLazLoggerWidgetSetWriteEvent.Sender">
<short>Object with the logger class instance (TLazLogger) for the event.</short>
</element>
<element name="TLazLoggerWidgetSetWriteEvent.S">
<short>Log message handled in the routine.</short>
</element>
<element name="TLazLoggerWidgetSetWriteEvent.Handled">
<short>
<b>True</b> if the message was handled in the routine, <var>False</var> if the default output mechanism for the logger class is used.
</short>
</element>
<element name="TLazLoggerWidgetSetWriteEvent.Target">
<short>Destination where the log message is written.</short>
</element>
<element name="TLazLoggerWidgetSetWriteEvent.Data">
<short>Optional pointer to data for the log message.</short>
</element>
<!-- class Visibility: default -->
<element name="TLazLoggerLogGroupList">
<short>Implements a container for TLazLoggerLogGroup instances.</short>
<descr/>
<seealso/>
</element>
<!-- variable Visibility: private -->
<element name="TLazLoggerLogGroupList.FList"/>
<element name="TLazLoggerLogGroupList.Clear"/>
<element name="TLazLoggerLogGroupList.GetItem"/>
<element name="TLazLoggerLogGroupList.GetItem.Result"/>
<element name="TLazLoggerLogGroupList.GetItem.Index"/>
<element name="TLazLoggerLogGroupList.NewItem"/>
<element name="TLazLoggerLogGroupList.NewItem.Result"/>
<element name="TLazLoggerLogGroupList.NewItem.AConfigName"/>
<element name="TLazLoggerLogGroupList.NewItem.ADefaulEnabled"/>
<!-- function Visibility: protected -->
<element name="TLazLoggerLogGroupList.Add">
<short>Creates and adds a new logger group in the container.</short>
<descr>
</descr>
<seealso>
</seealso>
</element>
<element name="TLazLoggerLogGroupList.Add.Result">
<short>Pointer to the TLazLoggerLogGroup instance created and added in the method.</short>
</element>
<element name="TLazLoggerLogGroupList.Add.AConfigName">
<short>Case-insensitive name for the log group added in the method.</short>
</element>
<element name="TLazLoggerLogGroupList.Add.ADefaulEnabled">
<short>True if enabled by default.</short>
</element>
<!-- function Visibility: protected -->
<element name="TLazLoggerLogGroupList.FindOrAdd">
<short>
Finds or creates a log group in the container with the specified name and enabled status.
</short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<element name="TLazLoggerLogGroupList.FindOrAdd.Result">
<short>Pointer to the TLazLoggerLogGroup instance with the specified name.</short>
</element>
<element name="TLazLoggerLogGroupList.FindOrAdd.AConfigName">
<short>Name of the log group to locate or create in the container.</short>
</element>
<element name="TLazLoggerLogGroupList.FindOrAdd.ADefaulEnabled">
<short>Default enabled status if the log group is created.</short>
</element>
<!-- procedure Visibility: protected -->
<element name="TLazLoggerLogGroupList.Remove">
<short>Removes a log group from the container.</short>
<descr>
<p>
Remove is overloaded to allow the group to be located using a pointer to the TLazLoggerLogGroup entry, or by a specified name. Remove calls Dispose to release resource allocated for the log group, and frees it from the internal list in the container.No actions are performed if a log group cannot be located in the method.
</p>
</descr>
<seealso/>
</element>
<element name="TLazLoggerLogGroupList.Remove.AConfigName">
<short>Name of the log group removed from the container.</short>
</element>
<element name="TLazLoggerLogGroupList.Remove.AnEntry">
<short>Pointer to the TLazLoggerLogGroup entry to remove from the container.</short>
</element>
<!-- constructor Visibility: public -->
<element name="TLazLoggerLogGroupList.Create">
<short>Constructor for the class instance.</short>
<descr>
<p>
Create is the constructor for the class instance. It allocates the internal TFPList instance used to store TLazLoggerLogGroup entries in the container.
</p>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<!-- destructor Visibility: public -->
<element name="TLazLoggerLogGroupList.Destroy">
<short>Destructor for the class instance.</short>
<descr>
<p>
Destroy is the overridden destructor for the class instance. It call Clear to remove all log group entries in the container, and frees the internal list where the log group entries are stored. Destroy calls the inherited method prior to exit.
</p>
</descr>
<seealso/>
</element>
<!-- procedure Visibility: public -->
<element name="TLazLoggerLogGroupList.Assign">
<short>Stores values from the log group list in Src in the current class instance.</short>
<descr/>
<seealso/>
</element>
<element name="TLazLoggerLogGroupList.Assign.Src">
<short>Logger group list with values stored in the current class instance.</short>
</element>
<!-- function Visibility: public -->
<element name="TLazLoggerLogGroupList.IndexOf">
<short>Gets the ordinal position in the container for the specified log group.</short>
<descr/>
<seealso/>
</element>
<element name="TLazLoggerLogGroupList.IndexOf.Result">
<short>Ordinal position in the container for the specified log group.</short>
</element>
<element name="TLazLoggerLogGroupList.IndexOf.AConfigName">
<short>Name of the loag group to locate in the container.</short>
</element>
<element name="TLazLoggerLogGroupList.IndexOf.AnEntry">
<short>Pointer to the log group to locate in the container.</short>
</element>
<!-- function Visibility: public -->
<element name="TLazLoggerLogGroupList.Find">
<short>Gets a pointer to the log group with the specified name.</short>
<descr/>
<seealso/>
</element>
<element name="TLazLoggerLogGroupList.Find.Result">
<short>Pointer to the log group located in the method, or Nil when not found.</short>
</element>
<element name="TLazLoggerLogGroupList.Find.AConfigName">
<short>Name of the log group to locate in the container.</short>
</element>
<!-- function Visibility: public -->
<element name="TLazLoggerLogGroupList.Count">
<short>Gets the number of log groups stored in the container.</short>
<descr/>
<seealso/>
</element>
<element name="TLazLoggerLogGroupList.Count.Result">
<short>Number of TLazLoggerLogGroup instances stored in the container.</short>
</element>
<!-- property Visibility: public -->
<element name="TLazLoggerLogGroupList.Item">
<short>
Provides indexed access to log group entries in the container by their ordinal position.
</short>
<descr>
</descr>
<seealso>
</seealso>
</element>
<element name="TLazLoggerLogGroupList.Item.Index">
<short>Ordinal position for the log group retrieved from the container.</short>
</element>
<!-- class Visibility: default -->
<element name="TLazLogger">
<short>Defines the base class for loggers used in the Lazarus IDE.</short>
<descr>
<p>
TLazLogger is a TRefCountedObject descendant which implements the base class for the logger mechanism used in the Lazarus IDE and the LCL. TLazLogger defines the interface used for the various logger classes which write their content to a specific destination. Many of the method which perform the output are empty implementations, and must be re-implemented in descendent classes which write to a file or to the debugger.
</p>
</descr>
<seealso/>
</element>
<!-- private -->
<element name="TLazLogger.FLoggerCriticalSection"/>
<element name="TLazLogger.FIsInitialized"/>
<element name="TLazLogger.FMaxNestPrefixLen"/>
<element name="TLazLogger.FNestLvlIndent"/>
<element name="TLazLogger.FLogGroupList"/>
<element name="TLazLogger.FUseGlobalLogGroupList"/>
<element name="TLazLogger.SetMaxNestPrefixLen"/>
<element name="TLazLogger.SetMaxNestPrefixLen.AValue"/>
<element name="TLazLogger.SetNestLvlIndent"/>
<element name="TLazLogger.SetNestLvlIndent.AValue"/>
<element name="TLazLogger.GetLogGroupList"/>
<element name="TLazLogger.GetLogGroupList.Result"/>
<element name="TLazLogger.SetUseGlobalLogGroupList"/>
<element name="TLazLogger.SetUseGlobalLogGroupList.AValue"/>
<!-- procedure Visibility: protected -->
<element name="TLazLogger.DoInit">
<short>Performs actions needed to initialize the logger class instance.</short>
<descr>
<p>
DoInit has an empty implementation. It must be re-implemented in a descendent class to perform the actions needed for the logger type.
</p>
</descr>
<seealso/>
</element>
<!-- procedure Visibility: protected -->
<element name="TLazLogger.DoFinish">
<short>Performs actions needed to finalize the logger class instance.</short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<!-- procedure Visibility: protected -->
<element name="TLazLogger.DoFinsh">
<short>Deprecated. Use DoFinish instead.</short>
</element>
<!-- procedure Visibility: protected -->
<element name="TLazLogger.IncreaseIndent">
<short>Increases the nesting level for the logger.</short>
<descr>
<p>
IncreaseIndent is an overloaded method used to increment the nesting level for output from the logger. The overloaded variant allow the method to be called without parameters, or with a record for an enabled log group. Both variants have an empty implementation, and must be overridden to perform the actions needed for the output destination in the descendent logger.
</p>
</descr>
<seealso/>
</element>
<element name="TLazLogger.IncreaseIndent.LogGroup">
<short>Identifies the enabled log group for the nesting level.</short>
</element>
<!-- procedure Visibility: protected -->
<element name="TLazLogger.DecreaseIndent">
<short>Decreases the nesting level for the logger.</short>
<descr>
<p>
DecreaseIndent is an overloaded method used to decrement the nesting level for output from the logger. The overloaded variant allow the method to be called without parameters, or with a record for an enabled log group. Both variants have an empty implementation, and must be overridden to perform the actions needed for the output destination in the descendent logger.
</p>
</descr>
<seealso/>
</element>
<element name="TLazLogger.DecreaseIndent.LogGroup">
<short>Identifies the enabled log group for the nesting level.</short>
</element>
<!-- procedure Visibility: protected -->
<element name="TLazLogger.IndentChanged">
<short>Performs actions needed when the nesting level for the logger has been changed.</short>
<descr>
<p>
IndentChanged has an empty implementation, andmust be overridden in a descendent class to perform the actions needed when the nesting level (Increaseindent, DecreaseIndent) has been changed.
</p>
</descr>
<seealso/>
</element>
<element name="TLazLogger.GetBlockHandler">
<short>Gets the value for the indexed BlockHandler property.</short>
<descr/>
<seealso>
<link id="TLazLogger.BlockHandler"/>
</seealso>
</element>
<element name="TLazLogger.GetBlockHandler.Result">
<short>Value for the indexed property.</short>
</element>
<element name="TLazLogger.GetBlockHandler.AIndex">
<short>Ordinal position for the property value retrieved in the method.</short>
</element>
<!-- procedure Visibility: protected -->
<element name="TLazLogger.DoDbgOut">
<short>Implements the DbgOut method for the logger type.</short>
<descr>
<p>
DoDbgOut has an empty implementation, and must be overridden in a descendent class to perform any actions needed for the output destination for the logger type.
</p>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<element name="TLazLogger.DoDbgOut.s">
<short>String value written in the method.</short>
</element>
<!-- procedure Visibility: protected -->
<element name="TLazLogger.DoDebugLn">
<short>Implements the DebugLn method for the logger type.</short>
<descr/>
<seealso/>
</element>
<element name="TLazLogger.DoDebugLn.s">
<short>String value written in the method.</short>
</element>
<!-- procedure Visibility: protected -->
<element name="TLazLogger.DoDebuglnStack">
<short>Implements the DebugLnStack method for the logger type.</short>
<descr/>
<seealso/>
</element>
<element name="TLazLogger.DoDebuglnStack.s">
<short>String value written in the method.</short>
</element>
<!-- function Visibility: protected -->
<element name="TLazLogger.ArgsToString">
<short>
Converts the specified array of values to a string which can be displayed using the output methods for the logger type.
</short>
<descr>
<p>
The return value is generated by calling DbgS or DbgSName for the value types in the array elements. For string and character types, the values are converted and cast using AnsiString, WideString, or RTTI routines as needed. An unknown value type is represented in the string using '?unknown variant?'.
</p>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<element name="TLazLogger.ArgsToString.Result">
<short>String representing the values in the specified array.</short>
</element>
<element name="TLazLogger.ArgsToString.Args">
<short>Array of constant values converted to a string in the method.</short>
</element>
<!-- property Visibility: protected -->
<element name="TLazLogger.IsInitialized">
<short>
Indicates whether the Init method has already been called for the logger class instance.
</short>
<descr>
<p>
Used and updated in the Init method to determine whether DoInit is called. DoInit is not called when IsInitialized is set to <b>True</b>.
</p>
</descr>
<seealso>
</seealso>
</element>
<!-- constructor Visibility: public -->
<element name="TLazLogger.Create">
<short>Constructor for the class instance.</short>
<descr>
<p>
Create is the constructor for the class instance. It calls the inherited method on entry, and allocates or initializes members in the class instance.It calls InitCriticalSection to allow the thread manager to set up the critical section used to protect resources in the class instance.
</p>
</descr>
<seealso/>
</element>
<!-- destructor Visibility: public -->
<element name="TLazLogger.Destroy">
<short>Destructor for the class instance.</short>
<descr>
<p>
Destroy is the overridden destructor for the class instance. It calls the Finish method to finalize the logger class instance, and releases and nils the reference-counted LogGroupList property. It calls the inherited destructor prior to signalling the DonCriticalSection handler for the critical section used in the class instance.
</p>
</descr>
<seealso/>
</element>
<!-- procedure Visibility: public -->
<element name="TLazLogger.Assign">
<short>Copies values from the logger instance in Src into the current class instance.</short>
<descr>
<p>
No actions are performed in the method when Src has not been assigned.
</p>
<p>
Copies values from the NestLvlIndent, MaxNestPrefixLen, and UseGlobalLogGroupList properties in Src into the current class instance. Values from LogGroupList in Src are also assigned to the current class instance.
</p>
</descr>
<seealso>
<link id="TLazLogger.NestLvlIndent"/>
<link id="TLazLogger.MaxNestPrefixLen"/>
<link id="TLazLogger.UseGlobalLogGroupList"/>
<link id="TLazLogger.LogGroupList"/>
</seealso>
</element>
<element name="TLazLogger.Assign.Src">
<short>Logger instance with values copied in the method.</short>
</element>
<!-- procedure Visibility: public -->
<element name="TLazLogger.Init">
<short>Initializes the logger class instance.</short>
<descr>
<p>
Ensures that the EnterCriticalSection handler in the thread manager is signalled for the critical section used to protect resources in the class instance. Calls the DoInit method, and sets IsInitialized to <b>True</b>.
</p>
</descr>
<seealso>
<link id="TLazLogger.DoInit"/>
<link id="TLazLogger.IsInitialized"/>
</seealso>
</element>
<!-- procedure Visibility: public -->
<element name="TLazLogger.Finish">
<short>FInalizes the logger class instance.</short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<element name="TLazLogger.CurrentIndentLevel">
<short>Gets the current indentation level for the logger.</short>
<descr>
<p>
Always returns 0. Must be overridden in a descendent class to return a value appropriate for the logger type.
</p>
</descr>
<seealso/>
</element>
<element name="TLazLogger.CurrentIndentLevel.Result">
<short>Always returns 0.</short>
</element>
<!-- property Visibility: public -->
<element name="TLazLogger.NestLvlIndent">
<short>Indicates the current nesting level for call to the logger class instance.</short>
<descr>
</descr>
<seealso>
</seealso>
</element>
<!-- property Visibility: public -->
<element name="TLazLogger.MaxNestPrefixLen">
<short>
Indicates the maximum length for the nexting prefix used when values are output in the logger.
</short>
<descr>
</descr>
<seealso>
</seealso>
</element>
<!-- function Visibility: public -->
<element name="TLazLogger.RegisterLogGroup">
<short>Creates a log group and optionally sets its enabled status.</short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<element name="TLazLogger.RegisterLogGroup.Result">
<short></short>
</element>
<element name="TLazLogger.RegisterLogGroup.AConfigName">
<short></short>
</element>
<element name="TLazLogger.RegisterLogGroup.ADefaulEnabled">
<short></short>
</element>
<!-- function Visibility: public -->
<element name="TLazLogger.FindOrRegisterLogGroup">
<short>Retrieves or creates a log group for the logger.</short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<element name="TLazLogger.FindOrRegisterLogGroup.Result">
<short></short>
</element>
<element name="TLazLogger.FindOrRegisterLogGroup.AConfigName">
<short></short>
</element>
<element name="TLazLogger.FindOrRegisterLogGroup.ADefaulEnabled">
<short></short>
</element>
<!-- property Visibility: public -->
<element name="TLazLogger.LogGroupList">
<short>Container with the group instances for the logger.</short>
<descr>
</descr>
<seealso>
</seealso>
</element>
<!-- property Visibility: public -->
<element name="TLazLogger.UseGlobalLogGroupList">
<short>
Indicates if the gloabal DebugLoggerGroupList is used as the value for the LogGroupList property.
</short>
<descr>
</descr>
<seealso>
</seealso>
</element>
<element name="TLazLogger.AddBlockHandler">
<short>Adds the specified handler for blobk Enter and Exit conditions.</short>
<descr/>
<seealso/>
</element>
<element name="TLazLogger.AddBlockHandler.AHandler">
<short/>
</element>
<element name="TLazLogger.RemoveBlockHandler">
<short>Removes the specified block hander for the logger type.</short>
<descr/>
<seealso/>
</element>
<element name="TLazLogger.RemoveBlockHandler.AHandler">
<short/>
</element>
<element name="TLazLogger.BlockHandlerCount">
<short>Gets the number of block handlers added to the logger type.</short>
<descr/>
<seealso/>
</element>
<element name="TLazLogger.BlockHandlerCount.Result">
<short>Number of block handlers for the logger type.</short>
</element>
<element name="TLazLogger.BlockHandler">
<short>Provides indexed access to the Block handlers for the logger type.</short>
<descr/>
<seealso/>
</element>
<element name="TLazLogger.BlockHandler.AIndex">
<short>Ordinal position for a block handler in the logger class instance.</short>
</element>
<!-- procedure Visibility: public -->
<element name="TLazLogger.DebuglnStack">
<short>Calls DoDebuglnStack to write the message in s when the logger has been enabed.</short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<element name="TLazLogger.DebuglnStack.s">
<short>Message written in the method.</short>
</element>
<!-- procedure Visibility: public -->
<element name="TLazLogger.DbgOut">
<short>Generates a log message with formatted value(s) for the specified type(s).</short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<element name="TLazLogger.DbgOut.s">
<short>String value for the message.</short>
</element>
<element name="TLazLogger.DbgOut.Args">
<short>Array of constant value(s) for the message.</short>
</element>
<element name="TLazLogger.DbgOut.s1">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DbgOut.s2">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DbgOut.s3">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DbgOut.s4">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DbgOut.s5">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DbgOut.s6">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DbgOut.s7">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DbgOut.s8">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DbgOut.s9">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DbgOut.s10">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DbgOut.s11">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DbgOut.s12">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DbgOut.s13">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DbgOut.s14">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DbgOut.s15">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DbgOut.s16">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DbgOut.s17">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DbgOut.s18">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn">
<short>Writes a message to the logger class instance at the current indentation level.</short>
<descr>
<p>
DebugLn is used to write a log message using the logger class instance. DebugLn is overloaded in TLazLogger to provide variants which accept String or Array values, a Format()-like expression, or a fixed number of String arguments.
</p>
<p>
DebugLn calls the DoDebugLn method to write the formatted string with the message for the logger class instance.
</p>
</descr>
<seealso>
<link id="TLazLogger.DoDebugLn"/>
</seealso>
</element>
<element name="TLazLogger.DebugLn.s">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn.Args">
<short>Array of constant values written in the method.</short>
</element>
<element name="TLazLogger.DebugLn.s1">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn.s2">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn.s3">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn.s4">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn.s5">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn.s6">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn.s7">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn.s8">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn.s9">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn.s10">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn.s11">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn.s12">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn.s13">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn.s14">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn.s15">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn.s16">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn.s17">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLn.s18">
<short>String argument for the method.</short>
</element>
<!-- procedure Visibility: public -->
<element name="TLazLogger.DebugLnEnter">
<short>Increases the indentation level for the logger and writes an optional log message.</short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<element name="TLazLogger.DebugLnEnter.s">
<short></short>
</element>
<element name="TLazLogger.DebugLnEnter.Args">
<short></short>
</element>
<element name="TLazLogger.DebugLnEnter.s1">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnEnter.s2">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnEnter.s3">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnEnter.s4">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnEnter.s5">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnEnter.s6">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnEnter.s7">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnEnter.s8">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnEnter.s9">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnEnter.s10">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnEnter.s11">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnEnter.s12">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnEnter.s13">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnEnter.s14">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnEnter.s15">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnEnter.s16">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnEnter.s17">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnEnter.s18">
<short>String argument for the method.</short>
</element>
<!-- procedure Visibility: public -->
<element name="TLazLogger.DebugLnExit">
<short>Decreases the indentation level for the logger and writes an optional log message.</short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<element name="TLazLogger.DebugLnExit.s">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnExit.Args">
<short></short>
</element>
<element name="TLazLogger.DebugLnExit.s1">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnExit.s2">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnExit.s3">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnExit.s4">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnExit.s5">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnExit.s6">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnExit.s7">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnExit.s8">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnExit.s9">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnExit.s10">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnExit.s11">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnExit.s12">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnExit.s13">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnExit.s14">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnExit.s15">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnExit.s16">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnExit.s17">
<short>String argument for the method.</short>
</element>
<element name="TLazLogger.DebugLnExit.s18">
<short>String argument for the method.</short>
</element>
<!-- argument Visibility: default -->
<element name="TLazLogger.DebugLnStack.LogGroup">
<short></short>
</element>
<!-- argument Visibility: default -->
<element name="TLazLogger.DbgOut.LogGroup">
<short></short>
</element>
<!-- argument Visibility: default -->
<element name="TLazLogger.DebugLn.LogGroup">
<short></short>
</element>
<!-- argument Visibility: default -->
<element name="TLazLogger.DebugLnEnter.LogGroup">
<short></short>
</element>
<!-- argument Visibility: default -->
<element name="TLazLogger.DebugLnExit.LogGroup">
<short></short>
</element>
<element name="TLazLogger.DumpExceptionBackTrace">
<short>
Writes addresses and exception frames representing the backtrace for an exception.
</short>
<descr/>
<seealso/>
</element>
<!-- class Visibility: default -->
<element name="TLazLoggerWithGroupParam">
<short>
Defines a logger which allows enabling / disabling groups from the command line.
</short>
<descr>
<p>
TLazLoggerWithGroupParam allows enabling / disabling groups from the command line. TLazLogger provides only storage for LogGroups, it does not need to enable/disable them, as it discards all logging anyway.
</p>
</descr>
<seealso/>
</element>
<!-- variable Visibility: private -->
<element name="TLazLoggerWithGroupParam.FLogAllDefaultDisabled"/>
<element name="TLazLoggerWithGroupParam.FLogDefaultEnabled"/>
<element name="TLazLoggerWithGroupParam.FLogParamParsed"/>
<element name="TLazLoggerWithGroupParam.FParamForEnabledLogGroups"/>
<element name="TLazLoggerWithGroupParam.SetParamForEnabledLogGroups"/>
<element name="TLazLoggerWithGroupParam.SetParamForEnabledLogGroups.AValue"/>
<element name="TLazLoggerWithGroupParam.ParseParamForEnabledLogGroups"/>
<!-- constructor Visibility: public -->
<element name="TLazLoggerWithGroupParam.Create">
<short></short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<!-- procedure Visibility: public -->
<element name="TLazLoggerWithGroupParam.Assign">
<short></short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<!-- argument Visibility: default -->
<element name="TLazLoggerWithGroupParam.Assign.Src">
<short></short>
</element>
<!-- function Visibility: public -->
<element name="TLazLoggerWithGroupParam.RegisterLogGroup">
<short></short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<!-- function result Visibility: default -->
<element name="TLazLoggerWithGroupParam.RegisterLogGroup.Result">
<short></short>
</element>
<!-- argument Visibility: default -->
<element name="TLazLoggerWithGroupParam.RegisterLogGroup.AConfigName">
<short></short>
</element>
<!-- argument Visibility: default -->
<element name="TLazLoggerWithGroupParam.RegisterLogGroup.ADefaulEnabled">
<short></short>
</element>
<!-- function Visibility: public -->
<element name="TLazLoggerWithGroupParam.FindOrRegisterLogGroup">
<short></short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<!-- function result Visibility: default -->
<element name="TLazLoggerWithGroupParam.FindOrRegisterLogGroup.Result">
<short></short>
</element>
<!-- argument Visibility: default -->
<element name="TLazLoggerWithGroupParam.FindOrRegisterLogGroup.AConfigName">
<short></short>
</element>
<!-- argument Visibility: default -->
<element name="TLazLoggerWithGroupParam.FindOrRegisterLogGroup.ADefaulEnabled">
<short></short>
</element>
<!-- property Visibility: public -->
<element name="TLazLoggerWithGroupParam.ParamForEnabledLogGroups">
<short></short>
<descr>
</descr>
<seealso>
</seealso>
</element>
<!-- class Visibility: default -->
<element name="TLazLoggerNoOutput">
<short>???</short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<!-- included from LazLoggerIntf.inc -->
<element name="DebuglnStack">
<short>Writes a message to the log.</short>
<descr>
<p>
Calls the DebuglnStack method for the logger class instance.
</p>
</descr>
<seealso/>
</element>
<element name="DebuglnStack.s">
<short/>
</element>
<!-- procedure Visibility: default -->
<element name="DbgOut">
<short>Writes a message to the log.</short>
<descr>
<p>
Writes the text to the log. Does not append a new line.
The Argument can be:
</p>
<ul>
<li>One or more string(s)</li>
<li>An open array of const: All values are converted to string and joined</li>
<li>A single string and open array of const: Will be passed to Format</li>
<li>Any of the above with a PLazLoggerLogGroup as filter</li>
</ul>
<p>
This is a forwarder to the log TLazLogger object. See there for details.
</p>
</descr>
<seealso>
<link id="#lazutils.lazlogger.GetDebugLogger">GetDebugLogger</link>
<link id="#lazutils.lazlogger.SetDebugLogger">SetDebugLogger</link>
</seealso>
</element>
<element name="DbgOut.s">
<short>String argument for the routine.</short>
</element>
<element name="DbgOut.Args">
<short></short>
</element>
<element name="DbgOut.s1">
<short>String argument for the routine.</short>
</element>
<element name="DbgOut.s2">
<short>String argument for the routine.</short>
</element>
<element name="DbgOut.s3">
<short>String argument for the routine.</short>
</element>
<element name="DbgOut.s4">
<short>String argument for the routine.</short>
</element>
<element name="DbgOut.s5">
<short>String argument for the routine.</short>
</element>
<element name="DbgOut.s6">
<short>String argument for the routine.</short>
</element>
<element name="DbgOut.s7">
<short>String argument for the routine.</short>
</element>
<element name="DbgOut.s8">
<short>String argument for the routine.</short>
</element>
<element name="DbgOut.s9">
<short>String argument for the routine.</short>
</element>
<element name="DbgOut.s10">
<short>String argument for the routine.</short>
</element>
<element name="DbgOut.s11">
<short>String argument for the routine.</short>
</element>
<element name="DbgOut.s12">
<short>String argument for the routine.</short>
</element>
<element name="DbgOut.s13">
<short>String argument for the routine.</short>
</element>
<element name="DbgOut.s14">
<short>String argument for the routine.</short>
</element>
<element name="DbgOut.s15">
<short>String argument for the routine.</short>
</element>
<element name="DbgOut.s16">
<short>String argument for the routine.</short>
</element>
<element name="DbgOut.s17">
<short>String argument for the routine.</short>
</element>
<element name="DbgOut.s18">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn">
<short>Writes a message to the log.</short>
<descr>
<p>
Writes the text to the log. Does append a new line.
</p>
<p>
The Argument can be:
</p>
<ul>
<li>One or more string</li>
<li>An open array of const: All values are converted to string and joined</li>
<li>A single string and open array of const: Will be passed to Format</li>
<li>Any of the above with a PLazLoggerLogGroup as filter</li>
</ul>
<p>This is a forwarder to the log TLazLogger object. See there for details.</p>
</descr>
<seealso>
<link id="#lazutils.lazlogger.GetDebugLogger">GetDebugLogger</link>
<link id="#lazutils.lazlogger.SetDebugLogger">SetDebugLogger</link>
</seealso>
</element>
<element name="DebugLn.s">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn.Args">
<short></short>
</element>
<element name="DebugLn.s1">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn.s2">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn.s3">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn.s4">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn.s5">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn.s6">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn.s7">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn.s8">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn.s9">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn.s10">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn.s11">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn.s12">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn.s13">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn.s14">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn.s15">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn.s16">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn.s17">
<short>String argument for the routine.</short>
</element>
<element name="DebugLn.s18">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter">
<short>Writes a message to the log.</short>
<descr>
<p>
Writes the text to the log. Does append a new line. Increases the current intend.
</p>
<p>
The Argument can be:
</p>
<ul>
<li>One or more string</li>
<li>An open array of const: All values are converted to string and joined</li>
<li>A single string and open array of const: Will be passed to Format</li>
<li>Any of the above with a PLazLoggerLogGroup as filter</li>
</ul>
<p>This is a forwarder to the log TLazLogger object. See there for details.</p>
</descr>
<seealso>
<link id="#lazutils.lazlogger.GetDebugLogger">GetDebugLogger</link>
<link id="#lazutils.lazlogger.SetDebugLogger">SetDebugLogger</link>
</seealso>
</element>
<element name="DebugLnEnter.s">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter.Args">
<short></short>
</element>
<element name="DebugLnEnter.s1">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter.s2">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter.s3">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter.s4">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter.s5">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter.s6">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter.s7">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter.s8">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter.s9">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter.s10">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter.s11">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter.s12">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter.s13">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter.s14">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter.s15">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter.s16">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter.s17">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnEnter.s18">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit">
<short>Writes a message to the log.</short>
<descr>
<p>
Writes the text to the log. Does append a new line. Increases the current indentation level.
</p>
<p>
The Argument can be:
</p>
<ul>
<li>One or more string</li>
<li>An open array of const: All values are converted to string and joined</li>
<li>A single string and open array of const: Will be passed to Format</li>
<li>Any of the above with a PLazLoggerLogGroup as filter</li>
<li>This is a forwarder to the log TLazLogger object. See there for details.</li>
</ul>
</descr>
<seealso>
<link id="#lazutils.lazlogger.GetDebugLogger">GetDebugLogger</link>
<link id="#lazutils.lazlogger.SetDebugLogger">SetDebugLogger</link>
</seealso>
</element>
<element name="DebugLnExit.s">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit.Args">
<short></short>
</element>
<element name="DebugLnExit.s1">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit.s2">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit.s3">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit.s4">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit.s5">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit.s6">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit.s7">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit.s8">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit.s9">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit.s10">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit.s11">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit.s12">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit.s13">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit.s14">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit.s15">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit.s16">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit.s17">
<short>String argument for the routine.</short>
</element>
<element name="DebugLnExit.s18">
<short>String argument for the routine.</short>
</element>
<!-- function Visibility: default -->
<element name="DbgS">
<short>
Generates a debugger message formatted with the value(s) for the specified type(s).
</short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<element name="DbgS.Result">
<short>String with the formatted content for the specified value(s).</short>
</element>
<element name="DbgS.c">
<short>Cardinal value for the message.</short>
</element>
<element name="DbgS.i">
<short>Integer (LongInt, Int64) value for the message.</short>
</element>
<element name="DbgS.q">
<short>QWord value for the message.</short>
</element>
<element name="DbgS.r">
<short>TRect value for the message.</short>
</element>
<element name="DbgS.p">
<short>Untyped pointer value for the message.</short>
</element>
<element name="DbgS.e">
<short>Extended value for the message.</short>
</element>
<element name="DbgS.MaxDecimals">
<short>Number of decimal places for the Extended value in the message.</short>
</element>
<element name="DbgS.b">
<short>Boolean value for the message.</short>
</element>
<element name="DbgS.m">
<short>TMethod value for the message. </short>
</element>
<element name="DbgS.ASize">
<short></short>
</element>
<element name="DbgS.s">
<short>String value for the message.</short>
</element>
<element name="DbgS.i1">
<short>Integer value for the message.</short>
</element>
<element name="DbgS.i2">
<short>Integer value for the message.</short>
</element>
<element name="DbgS.i3">
<short>Integer value for the message.</short>
</element>
<element name="DbgS.i4">
<short>Integer value for the message.</short>
</element>
<element name="DbgS.Shift">
<short>TShiftStateEnum value for the message.</short>
</element>
<!-- function Visibility: default -->
<element name="DbgSJoin">
<short>
Generates a debugger message with the combined values of the specified arguments.
</short>
<descr/>
<seealso/>
</element>
<element name="DbgSJoin.Result">
<short>Message with the values in s1 and s2 combined into a single string.</short>
</element>
<element name="DbgSJoin.s1">
<short>String value for the message.</short>
</element>
<element name="DbgSJoin.s2">
<short>String value for the message.</short>
</element>
<!-- function Visibility: default -->
<element name="DbgSName">
<short>
Generates a message with the optional name and class type for the specified object.
</short>
<descr>
<p>
DbgSName generates a log message with the optional name and class type for the object in p.
</p>
<p>
When p has not been assigned, the return value contains:
</p>
<code>'Nil'</code>
<p>
When p is a TComponent descendant, the return value contains a value like:
</p>
<code>TComponent.Name + ':' + TComponent.ClassName</code>
<p>
Otherwise, the return value is set to:
</p>
<code>TObject.ClassName</code>
<p>
If the LazLogger_Dummy unit has been included in the application, the return value is an empty string.
</p>
</descr>
<seealso/>
</element>
<element name="DbgSName.Result">
<short>
Formatted message with the optional name and class type for the specified value.
</short>
</element>
<element name="DbgSName.p">
<short>TObject instance examined in the routine.</short>
</element>
<!-- function Visibility: default -->
<element name="dbgObjMem">
<short>
Generates a message with the hexadecimal-encoded memory content for the specified object instance.
</short>
<descr/>
<seealso/>
</element>
<element name="dbgObjMem.Result">
<short>String with hexadecimal-encoded values for the specified object instance.</short>
</element>
<element name="dbgObjMem.AnObject">
<short>Object instance examined in the routine.</short>
</element>
<!-- function Visibility: default -->
<element name="dbghex">
<short>
Generates a message with the hexadecimal representation for the specified Int64 value.
</short>
<descr/>
<seealso/>
</element>
<element name="dbghex.Result">
<short>String with the hexadecimal representation for the specified value.</short>
</element>
<element name="dbghex.i">
<short>Int64 value converted in the routine.</short>
</element>
<element name="DbgSTime">
<short>Generates a message with the tick count for the computer system.</short>
<descr/>
<seealso/>
</element>
<element name="DbgSTime.Result">
<short>String with the tick count for the system.</short>
</element>
<!-- function Visibility: default -->
<element name="dbgMemRange">
<short>
Generates a message with the hexadecimal-encoded content for the specified block of memory and size.
</short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<element name="dbgMemRange.Result">
<short></short>
</element>
<element name="dbgMemRange.P">
<short>Untyped pointer to the byte values examined in the routine.</short>
</element>
<element name="dbgMemRange.Count">
<short>Number of bytes from the pointer to include in the message.</short>
</element>
<element name="dbgMemRange.Width">
<short>
Maximum number of columns to use in the formatted message string. A LineEnd sequence is inserted in the message when Width is exceeded.
</short>
</element>
<!-- function Visibility: default -->
<element name="dbgMemStream">
<short>
Generates a message with the hexadecimal-encoded values from the specified memory stream.
</short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<element name="dbgMemStream.Result">
<short></short>
</element>
<element name="dbgMemStream.MemStream">
<short></short>
</element>
<element name="dbgMemStream.Count">
<short></short>
</element>
<element name="DumpExceptionBackTrace">
<short>Write the stack trace back when an exception is detected.</short>
<descr>
<p>
Calls the <var>DumpExceptionBackTrace</var> method for the logger in the <var>DebugLogger</var> variable.
</p>
</descr>
<seealso>
<!-- link id="#lazutils.lazloggerbase.DebugLogger"/ -->
<link id="TLazLogger.DebugLn"/>
<link id="TLazLogger.DumpExceptionBackTrace"/>
</seealso>
</element>
<element name="operator assign(plazloggerloggroup): tlazloggerlogenabled">
<short>
Implements the Assign (':=') operator using a Pointer to a logger group for the TLazLoggerLogEnabled type.
</short>
<descr/>
<seealso/>
</element>
<element name="operator assign(boolean): tlazloggerlogenabled">
<short>
Implements the Assign (':=') operator using a Boolean argument for the TLazLoggerLogEnabled type.
</short>
<descr/>
<seealso/>
</element>
<element name="operator logicaland(tlazloggerlogenabled, tlazloggerlogenabled): tlazloggerlogenabled">
<short>
Implements the logical And operator for TLazLoggerLogEnabled types.
</short>
<descr/>
<seealso/>
</element>
<element name="operator logicalor(tlazloggerlogenabled, tlazloggerlogenabled): tlazloggerlogenabled">
<short>
Implements the logical Or operator for TLazLoggerLogEnabled types.
</short>
<descr/>
<seealso/>
</element>
<!-- function Visibility: default -->
<element name="GetParamByNameCount">
<short>
Gets the ordinal position for the specified parameter name in the command line for the application.
</short>
<descr/>
<seealso/>
</element>
<element name="GetParamByNameCount.Result">
<short>Position for the named parameters.</short>
</element>
<element name="GetParamByNameCount.AName">
<short>Parameter name to locate in the command line arguments.</short>
</element>
<!-- function Visibility: default -->
<element name="GetParamByName">
<short>
The the value for the specified parameter name from the command line for the application.
</short>
<descr/>
<seealso/>
</element>
<element name="GetParamByName.Result">
<short>Value for the named parameter, or an empty string when not found.</short>
</element>
<element name="GetParamByName.AName">
<short>Name of the parameter to locate in the command line arguments.</short>
</element>
<element name="GetParamByName.AnIndex">
<short></short>
</element>
<!-- function Visibility: default -->
<element name="GetDebugLoggerGroups">
<short>Gets the value for the DebugLoggerGroups property.</short>
<descr/>
<seealso>
<!-- link id="#lazutils.lazloggerbas.DebugLoggerGroups"/ -->
</seealso>
</element>
<element name="GetDebugLoggerGroups.Result">
<short></short>
</element>
<!-- procedure Visibility: default -->
<element name="SetDebugLoggerGroups">
<short>Sets the value for the DebugLoggerGroups property.</short>
<descr/>
<seealso>
<!-- link id="#lazutils.lazloggerbas.DebugLoggerGroups"/ -->
</seealso>
</element>
<element name="SetDebugLoggerGroups.ALogGroups">
<short>New value for the DebugLoggerGroups property.</short>
</element>
<!-- function Visibility: default -->
<element name="GetDebugLogger">
<short>Gets the value for the DebugLogger property.</short>
<descr/>
<seealso>
<!-- link id="#lazutils.lazloggerbase.DebugLogger"/ -->
</seealso>
</element>
<element name="GetDebugLogger.Result">
<short>Value for the DebugLogger property.</short>
</element>
<!-- function Visibility: default -->
<element name="GetExistingDebugLogger">
<short>
Gets an existing instance of the logger class type without forcing it to be created.
</short>
<descr/>
<seealso/>
</element>
<element name="GetExistingDebugLogger.Result">
<short></short>
</element>
<!-- procedure Visibility: default -->
<element name="SetDebugLogger">
<short>Sets the value for the DebugLogger property.</short>
<descr/>
<seealso>
<!-- link id="#lazutils.lazloggerbase.DebugLogger"/ -->
</seealso>
</element>
<element name="SetDebugLogger.ALogger">
<short>New value for the DebugLogger property.</short>
</element>
<!-- procedure Visibility: default -->
<element name="RecreateDebugLogger">
<short>Discards an re-creates the logger class instance got the logger type.</short>
<descr>
</descr>
<errors>
</errors>
<seealso>
</seealso>
</element>
<!-- property Visibility: default -->
<element name="DebugLogger">
<short>Unit property with the logger class instance for the logger type.</short>
<descr/>
<seealso/>
</element>
<!-- property Visibility: default -->
<element name="DebugLoggerGroups">
<short>Unit property with the list of log groups defined for a logger class instance.</short>
<descr>
</descr>
<seealso>
</seealso>
</element>
<element name="DbgStr">
<short>Generates a debugger message with the content from the specified value.</short>
<descr/>
<seealso/>
</element>
<element name="DbgStr.Result">
<short/>
</element>
<element name="DbgStr.StringWithSpecialChars">
<short/>
</element>
<element name="DbgStr.StartPos">
<short/>
</element>
<element name="DbgStr.Len">
<short/>
</element>
<element name="DbgStr.p">
<short/>
</element>
<element name="DbgWideStr">
<short>Generates a debugger message with the specified WideString content.</short>
<descr/>
<seealso/>
</element>
<element name="DbgWideStr.Result">
<short/>
</element>
<element name="DbgWideStr.StringWithSpecialChars">
<short/>
</element>
<element name="DumpStack">
<short>
Convenience routine used to write a debugger message with the current content of the stack.
</short>
<descr/>
<seealso/>
</element>
<!-- function type Visibility: default -->
<element name="TLazDebugLoggerCreator">
<short>
Function type used to create a TLazLogger instance for use with the Lazarus debugger.
</short>
<descr>
<p>
The return value is a TRefCountedObject object instance, and can be smart-linked away if none of the routines are used in the application.
</p>
</descr>
<seealso>
</seealso>
</element>
<element name="TLazDebugLoggerCreator.Result">
<short>Reference-counted object for the TLazLogger instance.</short>
</element>
<!-- variable Visibility: default -->
<element name="LazDebugLoggerCreator">
<short>
Address of the routine used to create a TLazLogger instance for use with the Lazarus debugger.
</short>
<descr>
</descr>
<seealso>
</seealso>
</element>
<!-- variable Visibility: default -->
<element name="OnWidgetSetDebugLn">
<short>Address of the routine called to perform DebugLn output for the logger type. </short>
<descr>
</descr>
<seealso>
</seealso>
</element>
<!-- variable Visibility: default -->
<element name="OnWidgetSetDbgOut">
<short>Address of the routine called to perform DbgOut output for the logger type. </short>
<descr>
</descr>
<seealso>
</seealso>
</element>
</module>
<!-- LazLoggerBase -->
</package>
</fpdoc-descriptions>
|