This file is indexed.

/usr/lib/ocaml/lwt/lwt_log.annot is in liblwt-ocaml-dev 2.7.1-4build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
"src/unix/lwt_log.ml" 30 1102 1106 "src/unix/lwt_log.ml" 30 1102 1118
type(
  string
)
ident(
  def program_name "src/unix/lwt_log.ml" 33 1229 1229 "src/unix/lwt_log.ml" 1 0 -1
)
"src/unix/lwt_log.ml" 30 1102 1121 "src/unix/lwt_log.ml" 30 1102 1138
type(
  string -> string
)
ident(
  ext_ref Filename.basename
)
"src/unix/lwt_log.ml" 30 1102 1139 "src/unix/lwt_log.ml" 30 1102 1158
type(
  string
)
ident(
  ext_ref Sys.executable_name
)
"src/unix/lwt_log.ml" 30 1102 1121 "src/unix/lwt_log.ml" 30 1102 1158
call(
  stack
)
type(
  string
)
"src/unix/lwt_log.ml" 33 1229 1233 "src/unix/lwt_log.ml" 33 1229 1243
type(
  ('a, out_channel, unit, unit, unit, unit) format6 -> 'a
)
ident(
  def log_intern "src/unix/lwt_log.ml" 40 1533 1533 "src/unix/lwt_log.ml" 1 0 -1
)
"src/unix/lwt_log.ml" 33 1229 1244 "src/unix/lwt_log.ml" 33 1229 1247
type(
  ('a, out_channel, unit, unit, unit, unit) format6
)
ident(
  def fmt "src/unix/lwt_log.ml" 34 1250 1252 "src/unix/lwt_log.ml" 34 1250 1314
)
"src/unix/lwt_log.ml" 34 1250 1252 "src/unix/lwt_log.ml" 34 1250 1266
type(
  (string -> 'a, out_channel, unit) format -> string -> 'a
)
ident(
  ext_ref Printf.eprintf
)
"src/unix/lwt_log.ml" 34 1250 1268 "src/unix/lwt_log.ml" 34 1250 1283
type(
  (string -> 'a, out_channel, unit, unit, unit, 'a) format6
)
"src/unix/lwt_log.ml" 34 1250 1284 "src/unix/lwt_log.ml" 34 1250 1286
type(
  (string -> 'a, out_channel, unit, unit, unit, 'a) format6 ->
  ('a, out_channel, unit, unit, unit, unit) format6 ->
  (string -> 'a, out_channel, unit, unit, unit, unit) format6
)
ident(
  ext_ref Pervasives.( ^^ )
)
"src/unix/lwt_log.ml" 34 1250 1287 "src/unix/lwt_log.ml" 34 1250 1290
type(
  ('a, out_channel, unit, unit, unit, unit) format6
)
ident(
  int_ref fmt "src/unix/lwt_log.ml" 33 1229 1244 "src/unix/lwt_log.ml" 33 1229 1247
)
"src/unix/lwt_log.ml" 34 1250 1291 "src/unix/lwt_log.ml" 34 1250 1293
type(
  ('a, out_channel, unit, unit, unit, unit) format6 ->
  (unit, out_channel, unit, unit, unit, unit) format6 ->
  ('a, out_channel, unit, unit, unit, unit) format6
)
ident(
  ext_ref Pervasives.( ^^ )
)
"src/unix/lwt_log.ml" 34 1250 1294 "src/unix/lwt_log.ml" 34 1250 1300
type(
  (unit, out_channel, unit, unit, unit, unit) format6
)
"src/unix/lwt_log.ml" 34 1250 1287 "src/unix/lwt_log.ml" 34 1250 1300
call(
  stack
)
type(
  ('a, out_channel, unit, unit, unit, unit) format6
)
"src/unix/lwt_log.ml" 34 1250 1267 "src/unix/lwt_log.ml" 34 1250 1301
call(
  stack
)
type(
  (string -> 'a, out_channel, unit, unit, unit, unit) format6
)
"src/unix/lwt_log.ml" 34 1250 1302 "src/unix/lwt_log.ml" 34 1250 1314
type(
  string
)
ident(
  int_ref program_name "src/unix/lwt_log.ml" 30 1102 1106 "src/unix/lwt_log.ml" 30 1102 1118
)
"src/unix/lwt_log.ml" 34 1250 1252 "src/unix/lwt_log.ml" 34 1250 1314
call(
  tail
)
type(
  'a
)
"src/unix/lwt_log.ml" 40 1533 1537 "src/unix/lwt_log.ml" 40 1533 1548
type(
  float -> string
)
ident(
  def date_string "src/unix/lwt_log.ml" 60 2083 2083 "src/unix/lwt_log.ml" 1 0 -1
)
"src/unix/lwt_log.ml" 40 1533 1549 "src/unix/lwt_log.ml" 40 1533 1553
type(
  float
)
ident(
  def time "src/unix/lwt_log.ml" 41 1556 1558 "src/unix/lwt_log.ml" 58 1966 2081
)
"src/unix/lwt_log.ml" 41 1556 1562 "src/unix/lwt_log.ml" 41 1556 1564
type(
  Unix.tm
)
ident(
  def tm "src/unix/lwt_log.ml" 42 1590 1592 "src/unix/lwt_log.ml" 58 1966 2081
)
"src/unix/lwt_log.ml" 41 1556 1567 "src/unix/lwt_log.ml" 41 1556 1581
type(
  float -> Unix.tm
)
ident(
  ext_ref Unix.localtime
)
"src/unix/lwt_log.ml" 41 1556 1582 "src/unix/lwt_log.ml" 41 1556 1586
type(
  float
)
ident(
  int_ref time "src/unix/lwt_log.ml" 40 1533 1549 "src/unix/lwt_log.ml" 40 1533 1553
)
"src/unix/lwt_log.ml" 41 1556 1567 "src/unix/lwt_log.ml" 41 1556 1586
call(
  stack
)
type(
  Unix.tm
)
"src/unix/lwt_log.ml" 42 1590 1596 "src/unix/lwt_log.ml" 42 1590 1608
type(
  string
)
ident(
  def month_string "src/unix/lwt_log.ml" 58 1966 1968 "src/unix/lwt_log.ml" 58 1966 2081
)
"src/unix/lwt_log.ml" 43 1611 1621 "src/unix/lwt_log.ml" 43 1611 1623
type(
  Unix.tm
)
ident(
  int_ref tm "src/unix/lwt_log.ml" 41 1556 1562 "src/unix/lwt_log.ml" 41 1556 1564
)
"src/unix/lwt_log.ml" 43 1611 1621 "src/unix/lwt_log.ml" 43 1611 1635
type(
  int
)
"src/unix/lwt_log.ml" 44 1641 1649 "src/unix/lwt_log.ml" 44 1641 1650
type(
  int
)
"src/unix/lwt_log.ml" 44 1641 1654 "src/unix/lwt_log.ml" 44 1641 1659
type(
  string
)
"src/unix/lwt_log.ml" 45 1660 1668 "src/unix/lwt_log.ml" 45 1660 1669
type(
  int
)
"src/unix/lwt_log.ml" 45 1660 1673 "src/unix/lwt_log.ml" 45 1660 1678
type(
  string
)
"src/unix/lwt_log.ml" 46 1679 1687 "src/unix/lwt_log.ml" 46 1679 1688
type(
  int
)
"src/unix/lwt_log.ml" 46 1679 1692 "src/unix/lwt_log.ml" 46 1679 1697
type(
  string
)
"src/unix/lwt_log.ml" 47 1698 1706 "src/unix/lwt_log.ml" 47 1698 1707
type(
  int
)
"src/unix/lwt_log.ml" 47 1698 1711 "src/unix/lwt_log.ml" 47 1698 1716
type(
  string
)
"src/unix/lwt_log.ml" 48 1717 1725 "src/unix/lwt_log.ml" 48 1717 1726
type(
  int
)
"src/unix/lwt_log.ml" 48 1717 1730 "src/unix/lwt_log.ml" 48 1717 1735
type(
  string
)
"src/unix/lwt_log.ml" 49 1736 1744 "src/unix/lwt_log.ml" 49 1736 1745
type(
  int
)
"src/unix/lwt_log.ml" 49 1736 1749 "src/unix/lwt_log.ml" 49 1736 1754
type(
  string
)
"src/unix/lwt_log.ml" 50 1755 1763 "src/unix/lwt_log.ml" 50 1755 1764
type(
  int
)
"src/unix/lwt_log.ml" 50 1755 1768 "src/unix/lwt_log.ml" 50 1755 1773
type(
  string
)
"src/unix/lwt_log.ml" 51 1774 1782 "src/unix/lwt_log.ml" 51 1774 1783
type(
  int
)
"src/unix/lwt_log.ml" 51 1774 1787 "src/unix/lwt_log.ml" 51 1774 1792
type(
  string
)
"src/unix/lwt_log.ml" 52 1793 1801 "src/unix/lwt_log.ml" 52 1793 1802
type(
  int
)
"src/unix/lwt_log.ml" 52 1793 1806 "src/unix/lwt_log.ml" 52 1793 1811
type(
  string
)
"src/unix/lwt_log.ml" 53 1812 1820 "src/unix/lwt_log.ml" 53 1812 1821
type(
  int
)
"src/unix/lwt_log.ml" 53 1812 1825 "src/unix/lwt_log.ml" 53 1812 1830
type(
  string
)
"src/unix/lwt_log.ml" 54 1831 1839 "src/unix/lwt_log.ml" 54 1831 1841
type(
  int
)
"src/unix/lwt_log.ml" 54 1831 1845 "src/unix/lwt_log.ml" 54 1831 1850
type(
  string
)
"src/unix/lwt_log.ml" 55 1851 1859 "src/unix/lwt_log.ml" 55 1851 1861
type(
  int
)
"src/unix/lwt_log.ml" 55 1851 1865 "src/unix/lwt_log.ml" 55 1851 1870
type(
  string
)
"src/unix/lwt_log.ml" 56 1871 1879 "src/unix/lwt_log.ml" 56 1871 1880
type(
  int
)
"src/unix/lwt_log.ml" 56 1871 1884 "src/unix/lwt_log.ml" 56 1871 1899
type(
  (string -> string) ->
  (int -> string, unit, string, string) format4 -> int -> string
)
ident(
  ext_ref Printf.ksprintf
)
"src/unix/lwt_log.ml" 56 1871 1900 "src/unix/lwt_log.ml" 56 1871 1908
type(
  string -> string
)
ident(
  ext_ref Pervasives.failwith
)
"src/unix/lwt_log.ml" 56 1871 1909 "src/unix/lwt_log.ml" 56 1871 1945
type(
  (int -> string, unit, string, string) format4
)
"src/unix/lwt_log.ml" 56 1871 1946 "src/unix/lwt_log.ml" 56 1871 1948
type(
  Unix.tm
)
ident(
  int_ref tm "src/unix/lwt_log.ml" 41 1556 1562 "src/unix/lwt_log.ml" 41 1556 1564
)
"src/unix/lwt_log.ml" 56 1871 1946 "src/unix/lwt_log.ml" 56 1871 1960
type(
  int
)
"src/unix/lwt_log.ml" 56 1871 1884 "src/unix/lwt_log.ml" 56 1871 1960
call(
  stack
)
type(
  string
)
"src/unix/lwt_log.ml" 43 1611 1615 "src/unix/lwt_log.ml" 56 1871 1960
type(
  string
)
"src/unix/lwt_log.ml" 58 1966 1968 "src/unix/lwt_log.ml" 58 1966 1982
type(
  (string -> int -> int -> int -> int -> string, unit, string) format ->
  string -> int -> int -> int -> int -> string
)
ident(
  ext_ref Printf.sprintf
)
"src/unix/lwt_log.ml" 58 1966 1983 "src/unix/lwt_log.ml" 58 1966 2006
type(
  (string -> int -> int -> int -> int -> string, unit, string) format
)
"src/unix/lwt_log.ml" 58 1966 2007 "src/unix/lwt_log.ml" 58 1966 2019
type(
  string
)
ident(
  int_ref month_string "src/unix/lwt_log.ml" 42 1590 1596 "src/unix/lwt_log.ml" 42 1590 1608
)
"src/unix/lwt_log.ml" 58 1966 2020 "src/unix/lwt_log.ml" 58 1966 2022
type(
  Unix.tm
)
ident(
  int_ref tm "src/unix/lwt_log.ml" 41 1556 1562 "src/unix/lwt_log.ml" 41 1556 1564
)
"src/unix/lwt_log.ml" 58 1966 2020 "src/unix/lwt_log.ml" 58 1966 2035
type(
  int
)
"src/unix/lwt_log.ml" 58 1966 2036 "src/unix/lwt_log.ml" 58 1966 2038
type(
  Unix.tm
)
ident(
  int_ref tm "src/unix/lwt_log.ml" 41 1556 1562 "src/unix/lwt_log.ml" 41 1556 1564
)
"src/unix/lwt_log.ml" 58 1966 2036 "src/unix/lwt_log.ml" 58 1966 2051
type(
  int
)
"src/unix/lwt_log.ml" 58 1966 2052 "src/unix/lwt_log.ml" 58 1966 2054
type(
  Unix.tm
)
ident(
  int_ref tm "src/unix/lwt_log.ml" 41 1556 1562 "src/unix/lwt_log.ml" 41 1556 1564
)
"src/unix/lwt_log.ml" 58 1966 2052 "src/unix/lwt_log.ml" 58 1966 2066
type(
  int
)
"src/unix/lwt_log.ml" 58 1966 2067 "src/unix/lwt_log.ml" 58 1966 2069
type(
  Unix.tm
)
ident(
  int_ref tm "src/unix/lwt_log.ml" 41 1556 1562 "src/unix/lwt_log.ml" 41 1556 1564
)
"src/unix/lwt_log.ml" 58 1966 2067 "src/unix/lwt_log.ml" 58 1966 2081
type(
  int
)
"src/unix/lwt_log.ml" 58 1966 1968 "src/unix/lwt_log.ml" 58 1966 2081
call(
  tail
)
type(
  string
)
"src/unix/lwt_log.ml" 42 1590 1592 "src/unix/lwt_log.ml" 58 1966 2081
type(
  string
)
"src/unix/lwt_log.ml" 41 1556 1558 "src/unix/lwt_log.ml" 58 1966 2081
type(
  string
)
"src/unix/lwt_log.ml" 60 2083 2087 "src/unix/lwt_log.ml" 60 2083 2093
type(
  buffer:Buffer.t ->
  template:string ->
  section:Lwt_log_core.section ->
  level:Lwt_log_core.level -> message:string -> unit
)
ident(
  def render "src/unix/lwt_log.ml" 86 3152 3152 "src/unix/lwt_log.ml" 1 0 -1
)
"src/unix/lwt_log.ml" 60 2083 2095 "src/unix/lwt_log.ml" 60 2083 2101
type(
  Buffer.t
)
ident(
  def buffer "src/unix/lwt_log.ml" 60 2083 2102 "src/unix/lwt_log.ml" 80 2921 2933
)
"src/unix/lwt_log.ml" 60 2083 2103 "src/unix/lwt_log.ml" 60 2083 2111
type(
  string
)
ident(
  def template "src/unix/lwt_log.ml" 60 2083 2112 "src/unix/lwt_log.ml" 80 2921 2933
)
"src/unix/lwt_log.ml" 60 2083 2113 "src/unix/lwt_log.ml" 60 2083 2120
type(
  Lwt_log_core.section
)
ident(
  def section "src/unix/lwt_log.ml" 60 2083 2121 "src/unix/lwt_log.ml" 80 2921 2933
)
"src/unix/lwt_log.ml" 60 2083 2122 "src/unix/lwt_log.ml" 60 2083 2127
type(
  Lwt_log_core.level
)
ident(
  def level "src/unix/lwt_log.ml" 60 2083 2128 "src/unix/lwt_log.ml" 80 2921 2933
)
"src/unix/lwt_log.ml" 60 2083 2129 "src/unix/lwt_log.ml" 60 2083 2136
type(
  string
)
ident(
  def message "src/unix/lwt_log.ml" 61 2139 2141 "src/unix/lwt_log.ml" 80 2921 2933
)
"src/unix/lwt_log.ml" 61 2139 2145 "src/unix/lwt_log.ml" 61 2139 2149
type(
  float lazy_t
)
ident(
  def time "src/unix/lwt_log.ml" 62 2182 2184 "src/unix/lwt_log.ml" 80 2921 2933
)
"src/unix/lwt_log.ml" 61 2139 2157 "src/unix/lwt_log.ml" 61 2139 2174
type(
  unit -> float
)
ident(
  ext_ref Unix.gettimeofday
)
"src/unix/lwt_log.ml" 61 2139 2175 "src/unix/lwt_log.ml" 61 2139 2177
type(
  unit
)
"src/unix/lwt_log.ml" 61 2139 2156 "src/unix/lwt_log.ml" 61 2139 2178
call(
  tail
)
type(
  float
)
"src/unix/lwt_log.ml" 61 2139 2152 "src/unix/lwt_log.ml" 61 2139 2178
type(
  float lazy_t
)
"src/unix/lwt_log.ml" 62 2182 2188 "src/unix/lwt_log.ml" 62 2182 2192
type(
  string
)
ident(
  def file "src/unix/lwt_log.ml" 67 2312 2314 "src/unix/lwt_log.ml" 80 2921 2933
)
"src/unix/lwt_log.ml" 62 2182 2194 "src/unix/lwt_log.ml" 62 2182 2198
type(
  int
)
ident(
  def line "src/unix/lwt_log.ml" 67 2312 2314 "src/unix/lwt_log.ml" 80 2921 2933
)
"src/unix/lwt_log.ml" 62 2182 2200 "src/unix/lwt_log.ml" 62 2182 2206
type(
  int
)
ident(
  def column "src/unix/lwt_log.ml" 67 2312 2314 "src/unix/lwt_log.ml" 80 2921 2933
)
"src/unix/lwt_log.ml" 62 2182 2188 "src/unix/lwt_log.ml" 62 2182 2206
type(
  string * int * int
)
"src/unix/lwt_log.ml" 63 2209 2219 "src/unix/lwt_log.ml" 63 2209 2226
type(
  (string * int * int) Lwt.key -> (string * int * int) option
)
ident(
  ext_ref Lwt.get
)
"src/unix/lwt_log.ml" 63 2209 2227 "src/unix/lwt_log.ml" 63 2209 2239
type(
  (string * int * int) Lwt.key
)
ident(
  ext_ref location_key
)
"src/unix/lwt_log.ml" 63 2209 2219 "src/unix/lwt_log.ml" 63 2209 2239
call(
  stack
)
type(
  (string * int * int) option
)
"src/unix/lwt_log.ml" 64 2245 2258 "src/unix/lwt_log.ml" 64 2245 2261
type(
  string * int * int
)
ident(
  def loc "src/unix/lwt_log.ml" 64 2245 2265 "src/unix/lwt_log.ml" 64 2245 2268
)
"src/unix/lwt_log.ml" 64 2245 2253 "src/unix/lwt_log.ml" 64 2245 2261
type(
  (string * int * int) option
)
"src/unix/lwt_log.ml" 64 2245 2265 "src/unix/lwt_log.ml" 64 2245 2268
type(
  string * int * int
)
ident(
  int_ref loc "src/unix/lwt_log.ml" 64 2245 2258 "src/unix/lwt_log.ml" 64 2245 2261
)
"src/unix/lwt_log.ml" 65 2269 2277 "src/unix/lwt_log.ml" 65 2269 2281
type(
  (string * int * int) option
)
"src/unix/lwt_log.ml" 65 2269 2286 "src/unix/lwt_log.ml" 65 2269 2297
type(
  string
)
"src/unix/lwt_log.ml" 65 2269 2299 "src/unix/lwt_log.ml" 65 2269 2301
type(
  int
)
"src/unix/lwt_log.ml" 65 2269 2303 "src/unix/lwt_log.ml" 65 2269 2305
type(
  int
)
"src/unix/lwt_log.ml" 65 2269 2285 "src/unix/lwt_log.ml" 65 2269 2306
type(
  string * int * int
)
"src/unix/lwt_log.ml" 63 2209 2213 "src/unix/lwt_log.ml" 65 2269 2306
type(
  string * int * int
)
"src/unix/lwt_log.ml" 67 2312 2314 "src/unix/lwt_log.ml" 67 2312 2335
type(
  Buffer.t -> (string -> string) -> string -> unit
)
ident(
  ext_ref Buffer.add_substitute
)
"src/unix/lwt_log.ml" 67 2312 2336 "src/unix/lwt_log.ml" 67 2312 2342
type(
  Buffer.t
)
ident(
  int_ref buffer "src/unix/lwt_log.ml" 60 2083 2095 "src/unix/lwt_log.ml" 60 2083 2101
)
"src/unix/lwt_log.ml" 69 2357 2366 "src/unix/lwt_log.ml" 69 2357 2372
type(
  string
)
"src/unix/lwt_log.ml" 69 2357 2376 "src/unix/lwt_log.ml" 69 2357 2387
type(
  float -> string
)
ident(
  int_ref date_string "src/unix/lwt_log.ml" 40 1533 1537 "src/unix/lwt_log.ml" 40 1533 1548
)
"src/unix/lwt_log.ml" 69 2357 2389 "src/unix/lwt_log.ml" 69 2357 2399
type(
  float Lazy.t -> float
)
ident(
  ext_ref Lazy.force
)
"src/unix/lwt_log.ml" 69 2357 2400 "src/unix/lwt_log.ml" 69 2357 2404
type(
  float Lazy.t
)
ident(
  int_ref time "src/unix/lwt_log.ml" 61 2139 2145 "src/unix/lwt_log.ml" 61 2139 2149
)
"src/unix/lwt_log.ml" 69 2357 2388 "src/unix/lwt_log.ml" 69 2357 2405
call(
  stack
)
type(
  float
)
"src/unix/lwt_log.ml" 69 2357 2376 "src/unix/lwt_log.ml" 69 2357 2405
call(
  tail
)
type(
  string
)
"src/unix/lwt_log.ml" 70 2406 2415 "src/unix/lwt_log.ml" 70 2406 2429
type(
  string
)
"src/unix/lwt_log.ml" 70 2406 2433 "src/unix/lwt_log.ml" 70 2406 2447
type(
  (float -> string, unit, string) format -> float -> string
)
ident(
  ext_ref Printf.sprintf
)
"src/unix/lwt_log.ml" 70 2406 2448 "src/unix/lwt_log.ml" 70 2406 2456
type(
  (float -> string, unit, string) format
)
"src/unix/lwt_log.ml" 70 2406 2458 "src/unix/lwt_log.ml" 70 2406 2467
type(
  float -> float -> float
)
ident(
  ext_ref Pervasives.mod_float
)
"src/unix/lwt_log.ml" 70 2406 2469 "src/unix/lwt_log.ml" 70 2406 2479
type(
  float Lazy.t -> float
)
ident(
  ext_ref Lazy.force
)
"src/unix/lwt_log.ml" 70 2406 2480 "src/unix/lwt_log.ml" 70 2406 2484
type(
  float Lazy.t
)
ident(
  int_ref time "src/unix/lwt_log.ml" 61 2139 2145 "src/unix/lwt_log.ml" 61 2139 2149
)
"src/unix/lwt_log.ml" 70 2406 2469 "src/unix/lwt_log.ml" 70 2406 2484
call(
  stack
)
type(
  float
)
"src/unix/lwt_log.ml" 70 2406 2485 "src/unix/lwt_log.ml" 70 2406 2487
type(
  float -> float -> float
)
ident(
  ext_ref Pervasives.( *. )
)
"src/unix/lwt_log.ml" 70 2406 2488 "src/unix/lwt_log.ml" 70 2406 2493
type(
  float
)
"src/unix/lwt_log.ml" 70 2406 2468 "src/unix/lwt_log.ml" 70 2406 2494
type(
  float
)
"src/unix/lwt_log.ml" 70 2406 2495 "src/unix/lwt_log.ml" 70 2406 2500
type(
  float
)
"src/unix/lwt_log.ml" 70 2406 2457 "src/unix/lwt_log.ml" 70 2406 2501
type(
  float
)
"src/unix/lwt_log.ml" 70 2406 2433 "src/unix/lwt_log.ml" 70 2406 2501
call(
  tail
)
type(
  string
)
"src/unix/lwt_log.ml" 71 2502 2511 "src/unix/lwt_log.ml" 71 2502 2517
type(
  string
)
"src/unix/lwt_log.ml" 71 2502 2521 "src/unix/lwt_log.ml" 71 2502 2533
type(
  string
)
ident(
  int_ref program_name "src/unix/lwt_log.ml" 30 1102 1106 "src/unix/lwt_log.ml" 30 1102 1118
)
"src/unix/lwt_log.ml" 72 2534 2543 "src/unix/lwt_log.ml" 72 2534 2548
type(
  string
)
"src/unix/lwt_log.ml" 72 2534 2552 "src/unix/lwt_log.ml" 72 2534 2565
type(
  int -> string
)
ident(
  ext_ref Pervasives.string_of_int
)
"src/unix/lwt_log.ml" 72 2534 2567 "src/unix/lwt_log.ml" 72 2534 2578
type(
  unit -> int
)
ident(
  ext_ref Unix.getpid
)
"src/unix/lwt_log.ml" 72 2534 2579 "src/unix/lwt_log.ml" 72 2534 2581
type(
  unit
)
"src/unix/lwt_log.ml" 72 2534 2566 "src/unix/lwt_log.ml" 72 2534 2582
call(
  stack
)
type(
  int
)
"src/unix/lwt_log.ml" 72 2534 2552 "src/unix/lwt_log.ml" 72 2534 2582
call(
  tail
)
type(
  string
)
"src/unix/lwt_log.ml" 73 2583 2592 "src/unix/lwt_log.ml" 73 2583 2601
type(
  string
)
"src/unix/lwt_log.ml" 73 2583 2605 "src/unix/lwt_log.ml" 73 2583 2612
type(
  string
)
ident(
  int_ref message "src/unix/lwt_log.ml" 60 2083 2129 "src/unix/lwt_log.ml" 60 2083 2136
)
"src/unix/lwt_log.ml" 74 2613 2622 "src/unix/lwt_log.ml" 74 2613 2629
type(
  string
)
"src/unix/lwt_log.ml" 74 2613 2633 "src/unix/lwt_log.ml" 74 2613 2661
type(
  Lwt_log_core.level -> string
)
ident(
  ext_ref Lwt_log_core.string_of_level
)
"src/unix/lwt_log.ml" 74 2613 2662 "src/unix/lwt_log.ml" 74 2613 2667
type(
  Lwt_log_core.level
)
ident(
  int_ref level "src/unix/lwt_log.ml" 60 2083 2122 "src/unix/lwt_log.ml" 60 2083 2127
)
"src/unix/lwt_log.ml" 74 2613 2633 "src/unix/lwt_log.ml" 74 2613 2667
call(
  tail
)
type(
  string
)
"src/unix/lwt_log.ml" 75 2668 2677 "src/unix/lwt_log.ml" 75 2668 2686
type(
  string
)
"src/unix/lwt_log.ml" 75 2668 2690 "src/unix/lwt_log.ml" 75 2668 2702
type(
  Lwt_log_core.section -> string
)
ident(
  ext_ref Section.name
)
"src/unix/lwt_log.ml" 75 2668 2703 "src/unix/lwt_log.ml" 75 2668 2710
type(
  Lwt_log_core.section
)
ident(
  int_ref section "src/unix/lwt_log.ml" 60 2083 2113 "src/unix/lwt_log.ml" 60 2083 2120
)
"src/unix/lwt_log.ml" 75 2668 2690 "src/unix/lwt_log.ml" 75 2668 2710
call(
  tail
)
type(
  string
)
"src/unix/lwt_log.ml" 76 2711 2720 "src/unix/lwt_log.ml" 76 2711 2730
type(
  string
)
"src/unix/lwt_log.ml" 76 2711 2734 "src/unix/lwt_log.ml" 76 2711 2738
type(
  string
)
ident(
  int_ref file "src/unix/lwt_log.ml" 62 2182 2188 "src/unix/lwt_log.ml" 62 2182 2192
)
"src/unix/lwt_log.ml" 77 2739 2748 "src/unix/lwt_log.ml" 77 2739 2758
type(
  string
)
"src/unix/lwt_log.ml" 77 2739 2762 "src/unix/lwt_log.ml" 77 2739 2775
type(
  int -> string
)
ident(
  ext_ref Pervasives.string_of_int
)
"src/unix/lwt_log.ml" 77 2739 2776 "src/unix/lwt_log.ml" 77 2739 2780
type(
  int
)
ident(
  int_ref line "src/unix/lwt_log.ml" 62 2182 2194 "src/unix/lwt_log.ml" 62 2182 2198
)
"src/unix/lwt_log.ml" 77 2739 2762 "src/unix/lwt_log.ml" 77 2739 2780
call(
  tail
)
type(
  string
)
"src/unix/lwt_log.ml" 78 2781 2790 "src/unix/lwt_log.ml" 78 2781 2802
type(
  string
)
"src/unix/lwt_log.ml" 78 2781 2806 "src/unix/lwt_log.ml" 78 2781 2819
type(
  int -> string
)
ident(
  ext_ref Pervasives.string_of_int
)
"src/unix/lwt_log.ml" 78 2781 2820 "src/unix/lwt_log.ml" 78 2781 2826
type(
  int
)
ident(
  int_ref column "src/unix/lwt_log.ml" 62 2182 2200 "src/unix/lwt_log.ml" 62 2182 2206
)
"src/unix/lwt_log.ml" 78 2781 2806 "src/unix/lwt_log.ml" 78 2781 2826
call(
  tail
)
type(
  string
)
"src/unix/lwt_log.ml" 79 2827 2836 "src/unix/lwt_log.ml" 79 2827 2839
type(
  string
)
ident(
  def var "src/unix/lwt_log.ml" 79 2827 2843 "src/unix/lwt_log.ml" 79 2827 2919
)
"src/unix/lwt_log.ml" 79 2827 2843 "src/unix/lwt_log.ml" 79 2827 2858
type(
  (string -> string) ->
  (string -> string, unit, string, string) format4 -> string -> string
)
ident(
  ext_ref Printf.ksprintf
)
"src/unix/lwt_log.ml" 79 2827 2859 "src/unix/lwt_log.ml" 79 2827 2870
type(
  string -> string
)
ident(
  ext_ref Pervasives.invalid_arg
)
"src/unix/lwt_log.ml" 79 2827 2871 "src/unix/lwt_log.ml" 79 2827 2915
type(
  (string -> string, unit, string, string) format4
)
"src/unix/lwt_log.ml" 79 2827 2916 "src/unix/lwt_log.ml" 79 2827 2919
type(
  string
)
ident(
  int_ref var "src/unix/lwt_log.ml" 79 2827 2836 "src/unix/lwt_log.ml" 79 2827 2839
)
"src/unix/lwt_log.ml" 79 2827 2843 "src/unix/lwt_log.ml" 79 2827 2919
call(
  tail
)
type(
  string
)
"src/unix/lwt_log.ml" 68 2343 2347 "src/unix/lwt_log.ml" 79 2827 2920
type(
  string -> string
)
"src/unix/lwt_log.ml" 80 2921 2925 "src/unix/lwt_log.ml" 80 2921 2933
type(
  string
)
ident(
  int_ref template "src/unix/lwt_log.ml" 60 2083 2103 "src/unix/lwt_log.ml" 60 2083 2111
)
"src/unix/lwt_log.ml" 67 2312 2314 "src/unix/lwt_log.ml" 80 2921 2933
call(
  tail
)
type(
  unit
)
"src/unix/lwt_log.ml" 62 2182 2184 "src/unix/lwt_log.ml" 80 2921 2933
type(
  unit
)
"src/unix/lwt_log.ml" 61 2139 2141 "src/unix/lwt_log.ml" 80 2921 2933
type(
  unit
)
"src/unix/lwt_log.ml" 86 3152 3156 "src/unix/lwt_log.ml" 86 3152 3163
type(
  ?template:string ->
  close_mode:[< `Close | `Keep ] ->
  channel:Lwt_io.output Lwt_io.channel -> unit -> logger
)
ident(
  def channel "src/unix/lwt_log.ml" 104 3902 3902 "src/unix/lwt_log.ml" 1 0 -1
)
"src/unix/lwt_log.ml" 86 3152 3166 "src/unix/lwt_log.ml" 86 3152 3174
type(
  string
)
"src/unix/lwt_log.ml" 86 3152 3175 "src/unix/lwt_log.ml" 86 3152 3208
type(
  string
)
type(
  string
)
ident(
  int_ref *sth* "src/unix/lwt_log.ml" 86 3152 3175 "src/unix/lwt_log.ml" 86 3152 3208
)
type(
  string option
)
type(
  string option
)
type(
  string
)
"src/unix/lwt_log.ml" 86 3152 3211 "src/unix/lwt_log.ml" 86 3152 3221
type(
  [< `Close | `Keep ] as 'a
)
ident(
  def close_mode "src/unix/lwt_log.ml" 86 3152 3222 "src/unix/lwt_log.ml" 102 3841 3900
)
"src/unix/lwt_log.ml" 86 3152 3223 "src/unix/lwt_log.ml" 86 3152 3230
type(
  Lwt_io.output Lwt_io.channel
)
ident(
  def channel "src/unix/lwt_log.ml" 86 3152 3231 "src/unix/lwt_log.ml" 102 3841 3900
)
"src/unix/lwt_log.ml" 86 3152 3231 "src/unix/lwt_log.ml" 86 3152 3233
type(
  unit
)
"src/unix/lwt_log.ml" 87 3236 3238 "src/unix/lwt_log.ml" 87 3236 3242
type(
  output:(section -> level -> string list -> unit Lwt.t) ->
  close:(unit -> unit Lwt.t) -> logger
)
ident(
  ext_ref make
)
"src/unix/lwt_log.ml" 88 3243 3260 "src/unix/lwt_log.ml" 88 3243 3267
type(
  section
)
ident(
  def section "src/unix/lwt_log.ml" 88 3243 3268 "src/unix/lwt_log.ml" 99 3743 3769
)
"src/unix/lwt_log.ml" 88 3243 3268 "src/unix/lwt_log.ml" 88 3243 3273
type(
  level
)
ident(
  def level "src/unix/lwt_log.ml" 88 3243 3274 "src/unix/lwt_log.ml" 99 3743 3769
)
"src/unix/lwt_log.ml" 88 3243 3274 "src/unix/lwt_log.ml" 88 3243 3279
type(
  string list
)
ident(
  def lines "src/unix/lwt_log.ml" 89 3283 3298 "src/unix/lwt_log.ml" 99 3743 3769
)
"src/unix/lwt_log.ml" 89 3283 3298 "src/unix/lwt_log.ml" 89 3283 3311
type(
  (Lwt_io.output_channel -> unit Lwt.t) ->
  Lwt_io.output Lwt_io.channel -> unit Lwt.t
)
ident(
  ext_ref Lwt_io.atomic
)
"src/unix/lwt_log.ml" 89 3283 3322 "src/unix/lwt_log.ml" 89 3283 3324
type(
  Lwt_io.output_channel
)
ident(
  def oc "src/unix/lwt_log.ml" 90 3328 3345 "src/unix/lwt_log.ml" 98 3710 3742
)
"src/unix/lwt_log.ml" 90 3328 3349 "src/unix/lwt_log.ml" 90 3328 3352
type(
  Buffer.t
)
ident(
  def buf "src/unix/lwt_log.ml" 91 3375 3392 "src/unix/lwt_log.ml" 98 3710 3742
)
"src/unix/lwt_log.ml" 90 3328 3355 "src/unix/lwt_log.ml" 90 3328 3368
type(
  int -> Buffer.t
)
ident(
  ext_ref Buffer.create
)
"src/unix/lwt_log.ml" 90 3328 3369 "src/unix/lwt_log.ml" 90 3328 3371
type(
  int
)
"src/unix/lwt_log.ml" 90 3328 3355 "src/unix/lwt_log.ml" 90 3328 3371
call(
  stack
)
type(
  Buffer.t
)
"src/unix/lwt_log.ml" 91 3375 3392 "src/unix/lwt_log.ml" 91 3375 3407
type(
  (string -> unit Lwt.t) -> string list -> unit Lwt.t
)
ident(
  ext_ref Lwt_list.iter_s
)
"src/unix/lwt_log.ml" 92 3408 3432 "src/unix/lwt_log.ml" 92 3408 3436
type(
  string
)
ident(
  def line "src/unix/lwt_log.ml" 93 3440 3462 "src/unix/lwt_log.ml" 96 3610 3669
)
"src/unix/lwt_log.ml" 93 3440 3462 "src/unix/lwt_log.ml" 93 3440 3474
type(
  Buffer.t -> unit
)
ident(
  ext_ref Buffer.clear
)
"src/unix/lwt_log.ml" 93 3440 3475 "src/unix/lwt_log.ml" 93 3440 3478
type(
  Buffer.t
)
ident(
  int_ref buf "src/unix/lwt_log.ml" 90 3328 3349 "src/unix/lwt_log.ml" 90 3328 3352
)
"src/unix/lwt_log.ml" 93 3440 3462 "src/unix/lwt_log.ml" 93 3440 3478
call(
  stack
)
type(
  unit
)
"src/unix/lwt_log.ml" 94 3480 3502 "src/unix/lwt_log.ml" 94 3480 3508
type(
  buffer:Buffer.t ->
  template:string -> section:section -> level:level -> message:string -> unit
)
ident(
  int_ref render "src/unix/lwt_log.ml" 60 2083 2087 "src/unix/lwt_log.ml" 60 2083 2093
)
"src/unix/lwt_log.ml" 94 3480 3517 "src/unix/lwt_log.ml" 94 3480 3520
type(
  Buffer.t
)
ident(
  int_ref buf "src/unix/lwt_log.ml" 90 3328 3349 "src/unix/lwt_log.ml" 90 3328 3352
)
"src/unix/lwt_log.ml" 94 3480 3522 "src/unix/lwt_log.ml" 94 3480 3530
type(
  string
)
ident(
  int_ref template "src/unix/lwt_log.ml" 86 3152 3166 "src/unix/lwt_log.ml" 86 3152 3174
)
"src/unix/lwt_log.ml" 94 3480 3532 "src/unix/lwt_log.ml" 94 3480 3539
type(
  section
)
ident(
  int_ref section "src/unix/lwt_log.ml" 88 3243 3260 "src/unix/lwt_log.ml" 88 3243 3267
)
"src/unix/lwt_log.ml" 94 3480 3541 "src/unix/lwt_log.ml" 94 3480 3546
type(
  level
)
ident(
  int_ref level "src/unix/lwt_log.ml" 88 3243 3268 "src/unix/lwt_log.ml" 88 3243 3273
)
"src/unix/lwt_log.ml" 94 3480 3556 "src/unix/lwt_log.ml" 94 3480 3560
type(
  string
)
ident(
  int_ref line "src/unix/lwt_log.ml" 92 3408 3432 "src/unix/lwt_log.ml" 92 3408 3436
)
"src/unix/lwt_log.ml" 94 3480 3502 "src/unix/lwt_log.ml" 94 3480 3560
call(
  stack
)
type(
  unit
)
"src/unix/lwt_log.ml" 95 3562 3584 "src/unix/lwt_log.ml" 95 3562 3599
type(
  Buffer.t -> char -> unit
)
ident(
  ext_ref Buffer.add_char
)
"src/unix/lwt_log.ml" 95 3562 3600 "src/unix/lwt_log.ml" 95 3562 3603
type(
  Buffer.t
)
ident(
  int_ref buf "src/unix/lwt_log.ml" 90 3328 3349 "src/unix/lwt_log.ml" 90 3328 3352
)
"src/unix/lwt_log.ml" 95 3562 3604 "src/unix/lwt_log.ml" 95 3562 3608
type(
  char
)
"src/unix/lwt_log.ml" 95 3562 3584 "src/unix/lwt_log.ml" 95 3562 3608
call(
  stack
)
type(
  unit
)
"src/unix/lwt_log.ml" 96 3610 3632 "src/unix/lwt_log.ml" 96 3610 3644
type(
  Lwt_io.output_channel -> string -> unit Lwt.t
)
ident(
  ext_ref Lwt_io.write
)
"src/unix/lwt_log.ml" 96 3610 3645 "src/unix/lwt_log.ml" 96 3610 3647
type(
  Lwt_io.output_channel
)
ident(
  int_ref oc "src/unix/lwt_log.ml" 89 3283 3322 "src/unix/lwt_log.ml" 89 3283 3324
)
"src/unix/lwt_log.ml" 96 3610 3649 "src/unix/lwt_log.ml" 96 3610 3664
type(
  Buffer.t -> string
)
ident(
  ext_ref Buffer.contents
)
"src/unix/lwt_log.ml" 96 3610 3665 "src/unix/lwt_log.ml" 96 3610 3668
type(
  Buffer.t
)
ident(
  int_ref buf "src/unix/lwt_log.ml" 90 3328 3349 "src/unix/lwt_log.ml" 90 3328 3352
)
"src/unix/lwt_log.ml" 96 3610 3648 "src/unix/lwt_log.ml" 96 3610 3669
call(
  stack
)
type(
  string
)
"src/unix/lwt_log.ml" 96 3610 3632 "src/unix/lwt_log.ml" 96 3610 3669
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 95 3562 3584 "src/unix/lwt_log.ml" 96 3610 3669
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 94 3480 3502 "src/unix/lwt_log.ml" 96 3610 3669
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 93 3440 3462 "src/unix/lwt_log.ml" 96 3610 3669
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 92 3408 3427 "src/unix/lwt_log.ml" 96 3610 3670
type(
  string -> unit Lwt.t
)
"src/unix/lwt_log.ml" 97 3671 3690 "src/unix/lwt_log.ml" 97 3671 3695
type(
  string list
)
ident(
  int_ref lines "src/unix/lwt_log.ml" 88 3243 3274 "src/unix/lwt_log.ml" 88 3243 3279
)
"src/unix/lwt_log.ml" 91 3375 3392 "src/unix/lwt_log.ml" 97 3671 3695
call(
  stack
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 97 3671 3696 "src/unix/lwt_log.ml" 97 3671 3699
type(
  unit Lwt.t -> (unit -> unit Lwt.t) -> unit Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/unix/lwt_log.ml" 97 3671 3704 "src/unix/lwt_log.ml" 97 3671 3706
type(
  unit
)
"src/unix/lwt_log.ml" 98 3710 3727 "src/unix/lwt_log.ml" 98 3710 3739
type(
  Lwt_io.output_channel -> unit Lwt.t
)
ident(
  ext_ref Lwt_io.flush
)
"src/unix/lwt_log.ml" 98 3710 3740 "src/unix/lwt_log.ml" 98 3710 3742
type(
  Lwt_io.output_channel
)
ident(
  int_ref oc "src/unix/lwt_log.ml" 89 3283 3322 "src/unix/lwt_log.ml" 89 3283 3324
)
"src/unix/lwt_log.ml" 98 3710 3727 "src/unix/lwt_log.ml" 98 3710 3742
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 97 3671 3700 "src/unix/lwt_log.ml" 98 3710 3742
type(
  unit -> unit Lwt.t
)
"src/unix/lwt_log.ml" 91 3375 3392 "src/unix/lwt_log.ml" 98 3710 3742
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 90 3328 3345 "src/unix/lwt_log.ml" 98 3710 3742
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 89 3283 3312 "src/unix/lwt_log.ml" 99 3743 3761
type(
  Lwt_io.output_channel -> unit Lwt.t
)
"src/unix/lwt_log.ml" 99 3743 3762 "src/unix/lwt_log.ml" 99 3743 3769
type(
  Lwt_io.output Lwt_io.channel
)
ident(
  int_ref channel "src/unix/lwt_log.ml" 86 3152 3223 "src/unix/lwt_log.ml" 86 3152 3230
)
"src/unix/lwt_log.ml" 89 3283 3298 "src/unix/lwt_log.ml" 99 3743 3769
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 88 3243 3255 "src/unix/lwt_log.ml" 99 3743 3770
type(
  section -> level -> string list -> unit Lwt.t
)
"src/unix/lwt_log.ml" 100 3771 3789 "src/unix/lwt_log.ml" 100 3771 3799
type(
  'a
)
ident(
  int_ref close_mode "src/unix/lwt_log.ml" 86 3152 3211 "src/unix/lwt_log.ml" 86 3152 3221
)
"src/unix/lwt_log.ml" 101 3805 3821 "src/unix/lwt_log.ml" 101 3805 3826
type(
  'a
)
"src/unix/lwt_log.ml" 101 3805 3830 "src/unix/lwt_log.ml" 101 3805 3840
type(
  unit -> unit Lwt.t
)
ident(
  ext_ref Lwt.return
)
"src/unix/lwt_log.ml" 102 3841 3857 "src/unix/lwt_log.ml" 102 3841 3863
type(
  'a
)
"src/unix/lwt_log.ml" 102 3841 3872 "src/unix/lwt_log.ml" 102 3841 3874
type(
  unit
)
"src/unix/lwt_log.ml" 102 3841 3878 "src/unix/lwt_log.ml" 102 3841 3890
type(
  Lwt_io.output Lwt_io.channel -> unit Lwt.t
)
ident(
  ext_ref Lwt_io.close
)
"src/unix/lwt_log.ml" 102 3841 3891 "src/unix/lwt_log.ml" 102 3841 3898
type(
  Lwt_io.output Lwt_io.channel
)
ident(
  int_ref channel "src/unix/lwt_log.ml" 86 3152 3223 "src/unix/lwt_log.ml" 86 3152 3230
)
"src/unix/lwt_log.ml" 102 3841 3878 "src/unix/lwt_log.ml" 102 3841 3898
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 102 3841 3867 "src/unix/lwt_log.ml" 102 3841 3899
type(
  unit -> unit Lwt.t
)
"src/unix/lwt_log.ml" 100 3771 3782 "src/unix/lwt_log.ml" 102 3841 3900
type(
  unit -> unit Lwt.t
)
"src/unix/lwt_log.ml" 87 3236 3238 "src/unix/lwt_log.ml" 102 3841 3900
call(
  tail
)
type(
  logger
)
"src/unix/lwt_log.ml" 104 3902 3906 "src/unix/lwt_log.ml" 104 3902 3907
type(
  unit
)
"src/unix/lwt_log.ml" 104 3902 3910 "src/unix/lwt_log.ml" 104 3902 3930
type(
  logger ref
)
ident(
  ext_ref Lwt_log_core.default
)
"src/unix/lwt_log.ml" 104 3902 3931 "src/unix/lwt_log.ml" 104 3902 3933
type(
  logger ref -> logger -> unit
)
ident(
  ext_ref Pervasives.( := )
)
"src/unix/lwt_log.ml" 104 3902 3934 "src/unix/lwt_log.ml" 104 3902 3941
type(
  ?template:string ->
  close_mode:_[< `Close | `Keep > `Keep ] ->
  channel:Lwt_io.output_channel -> unit -> logger
)
ident(
  int_ref channel "src/unix/lwt_log.ml" 86 3152 3156 "src/unix/lwt_log.ml" 86 3152 3163
)
"src/unix/lwt_log.ml" 104 3902 3954 "src/unix/lwt_log.ml" 104 3902 3959
type(
  _[< `Close | `Keep > `Keep ] as 'a
)
"src/unix/lwt_log.ml" 104 3902 3969 "src/unix/lwt_log.ml" 104 3902 3982
type(
  Lwt_io.output_channel
)
ident(
  ext_ref Lwt_io.stderr
)
"src/unix/lwt_log.ml" 104 3902 3983 "src/unix/lwt_log.ml" 104 3902 3985
type(
  unit
)
"src/unix/lwt_log.ml" 104 3902 3934 "src/unix/lwt_log.ml" 104 3902 3985
call(
  stack
)
type(
  logger
)
"src/unix/lwt_log.ml" 104 3902 3910 "src/unix/lwt_log.ml" 104 3902 3985
type(
  unit
)
"src/unix/lwt_log.ml" 106 3987 3991 "src/unix/lwt_log.ml" 106 3987 3995
type(
  ?template:string ->
  ?mode:[< `Append | `Truncate > `Append ] ->
  ?perm:Lwt_unix.file_perm -> file_name:string -> unit -> logger Lwt.t
)
ident(
  def file "src/unix/lwt_log.ml" 117 4502 4502 "src/unix/lwt_log.ml" 1 0 -1
)
"src/unix/lwt_log.ml" 106 3987 3998 "src/unix/lwt_log.ml" 106 3987 4006
type(
  string
)
"src/unix/lwt_log.ml" 106 3987 4007 "src/unix/lwt_log.ml" 106 3987 4040
type(
  string
)
type(
  string
)
ident(
  int_ref *sth* "src/unix/lwt_log.ml" 106 3987 4007 "src/unix/lwt_log.ml" 106 3987 4040
)
type(
  string option
)
type(
  string option
)
type(
  string
)
"src/unix/lwt_log.ml" 106 3987 4044 "src/unix/lwt_log.ml" 106 3987 4048
type(
  [< `Append | `Truncate > `Append ] as 'a
)
"src/unix/lwt_log.ml" 106 3987 4049 "src/unix/lwt_log.ml" 106 3987 4056
type(
  'a
)
type(
  'a
)
ident(
  int_ref *sth* "src/unix/lwt_log.ml" 106 3987 4049 "src/unix/lwt_log.ml" 106 3987 4056
)
type(
  'a option
)
type(
  'a option
)
type(
  'a
)
"src/unix/lwt_log.ml" 106 3987 4060 "src/unix/lwt_log.ml" 106 3987 4064
type(
  Lwt_unix.file_perm
)
"src/unix/lwt_log.ml" 106 3987 4065 "src/unix/lwt_log.ml" 106 3987 4070
type(
  Lwt_unix.file_perm
)
type(
  Lwt_unix.file_perm
)
ident(
  int_ref *sth* "src/unix/lwt_log.ml" 106 3987 4065 "src/unix/lwt_log.ml" 106 3987 4070
)
type(
  Lwt_unix.file_perm option
)
type(
  Lwt_unix.file_perm option
)
type(
  Lwt_unix.file_perm
)
"src/unix/lwt_log.ml" 106 3987 4073 "src/unix/lwt_log.ml" 106 3987 4082
type(
  string
)
ident(
  def file_name "src/unix/lwt_log.ml" 106 3987 4083 "src/unix/lwt_log.ml" 115 4434 4500
)
"src/unix/lwt_log.ml" 106 3987 4083 "src/unix/lwt_log.ml" 106 3987 4085
type(
  unit
)
"src/unix/lwt_log.ml" 107 4088 4094 "src/unix/lwt_log.ml" 107 4088 4099
type(
  Unix.open_flag list
)
ident(
  def flags "src/unix/lwt_log.ml" 112 4296 4298 "src/unix/lwt_log.ml" 115 4434 4500
)
"src/unix/lwt_log.ml" 107 4088 4108 "src/unix/lwt_log.ml" 107 4088 4112
type(
  'a
)
ident(
  int_ref mode "src/unix/lwt_log.ml" 106 3987 4044 "src/unix/lwt_log.ml" 106 3987 4048
)
"src/unix/lwt_log.ml" 108 4118 4124 "src/unix/lwt_log.ml" 108 4118 4131
type(
  'a
)
"src/unix/lwt_log.ml" 109 4135 4144 "src/unix/lwt_log.ml" 109 4135 4157
type(
  Unix.open_flag
)
"src/unix/lwt_log.ml" 109 4135 4159 "src/unix/lwt_log.ml" 109 4135 4171
type(
  Unix.open_flag
)
"src/unix/lwt_log.ml" 109 4135 4173 "src/unix/lwt_log.ml" 109 4135 4186
type(
  Unix.open_flag
)
"src/unix/lwt_log.ml" 109 4135 4188 "src/unix/lwt_log.ml" 109 4135 4203
type(
  Unix.open_flag
)
"src/unix/lwt_log.ml" 109 4135 4143 "src/unix/lwt_log.ml" 109 4135 4204
type(
  Unix.open_flag list
)
"src/unix/lwt_log.ml" 110 4205 4211 "src/unix/lwt_log.ml" 110 4205 4220
type(
  'a
)
"src/unix/lwt_log.ml" 111 4224 4233 "src/unix/lwt_log.ml" 111 4224 4246
type(
  Unix.open_flag
)
"src/unix/lwt_log.ml" 111 4224 4248 "src/unix/lwt_log.ml" 111 4224 4260
type(
  Unix.open_flag
)
"src/unix/lwt_log.ml" 111 4224 4262 "src/unix/lwt_log.ml" 111 4224 4274
type(
  Unix.open_flag
)
"src/unix/lwt_log.ml" 111 4224 4276 "src/unix/lwt_log.ml" 111 4224 4291
type(
  Unix.open_flag
)
"src/unix/lwt_log.ml" 111 4224 4232 "src/unix/lwt_log.ml" 111 4224 4292
type(
  Unix.open_flag list
)
"src/unix/lwt_log.ml" 107 4088 4102 "src/unix/lwt_log.ml" 111 4224 4292
type(
  Unix.open_flag list
)
"src/unix/lwt_log.ml" 112 4296 4298 "src/unix/lwt_log.ml" 112 4296 4315
type(
  string ->
  Lwt_unix.open_flag list -> Lwt_unix.file_perm -> Lwt_unix.file_descr Lwt.t
)
ident(
  ext_ref Lwt_unix.openfile
)
"src/unix/lwt_log.ml" 112 4296 4316 "src/unix/lwt_log.ml" 112 4296 4325
type(
  string
)
ident(
  int_ref file_name "src/unix/lwt_log.ml" 106 3987 4073 "src/unix/lwt_log.ml" 106 3987 4082
)
"src/unix/lwt_log.ml" 112 4296 4326 "src/unix/lwt_log.ml" 112 4296 4331
type(
  Lwt_unix.open_flag list
)
ident(
  int_ref flags "src/unix/lwt_log.ml" 107 4088 4094 "src/unix/lwt_log.ml" 107 4088 4099
)
"src/unix/lwt_log.ml" 112 4296 4332 "src/unix/lwt_log.ml" 112 4296 4336
type(
  Lwt_unix.file_perm
)
ident(
  int_ref perm "src/unix/lwt_log.ml" 106 3987 4060 "src/unix/lwt_log.ml" 106 3987 4064
)
"src/unix/lwt_log.ml" 112 4296 4298 "src/unix/lwt_log.ml" 112 4296 4336
call(
  stack
)
type(
  Lwt_unix.file_descr Lwt.t
)
"src/unix/lwt_log.ml" 112 4296 4337 "src/unix/lwt_log.ml" 112 4296 4340
type(
  Lwt_unix.file_descr Lwt.t ->
  (Lwt_unix.file_descr -> logger Lwt.t) -> logger Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/unix/lwt_log.ml" 112 4296 4345 "src/unix/lwt_log.ml" 112 4296 4347
type(
  Lwt_unix.file_descr
)
ident(
  def fd "src/unix/lwt_log.ml" 113 4351 4353 "src/unix/lwt_log.ml" 115 4434 4500
)
"src/unix/lwt_log.ml" 113 4351 4353 "src/unix/lwt_log.ml" 113 4351 4379
type(
  Lwt_unix.file_descr -> unit
)
ident(
  ext_ref Lwt_unix.set_close_on_exec
)
"src/unix/lwt_log.ml" 113 4351 4380 "src/unix/lwt_log.ml" 113 4351 4382
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 112 4296 4345 "src/unix/lwt_log.ml" 112 4296 4347
)
"src/unix/lwt_log.ml" 113 4351 4353 "src/unix/lwt_log.ml" 113 4351 4382
call(
  stack
)
type(
  unit
)
"src/unix/lwt_log.ml" 114 4384 4390 "src/unix/lwt_log.ml" 114 4384 4392
type(
  Lwt_io.output Lwt_io.channel
)
ident(
  def oc "src/unix/lwt_log.ml" 115 4434 4436 "src/unix/lwt_log.ml" 115 4434 4500
)
"src/unix/lwt_log.ml" 114 4384 4395 "src/unix/lwt_log.ml" 114 4384 4407
type(
  ?buffer:Lwt_bytes.t ->
  ?close:(unit -> unit Lwt.t) ->
  mode:Lwt_io.output Lwt_io.mode ->
  Lwt_unix.file_descr -> Lwt_io.output Lwt_io.channel
)
ident(
  ext_ref Lwt_io.of_fd
)
"src/unix/lwt_log.ml" 114 4384 4414 "src/unix/lwt_log.ml" 114 4384 4427
type(
  Lwt_io.output Lwt_io.mode
)
ident(
  ext_ref Lwt_io.output
)
"src/unix/lwt_log.ml" 114 4384 4428 "src/unix/lwt_log.ml" 114 4384 4430
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 112 4296 4345 "src/unix/lwt_log.ml" 112 4296 4347
)
"src/unix/lwt_log.ml" 114 4384 4395 "src/unix/lwt_log.ml" 114 4384 4430
call(
  stack
)
type(
  Lwt_io.output Lwt_io.channel
)
"src/unix/lwt_log.ml" 115 4434 4436 "src/unix/lwt_log.ml" 115 4434 4446
type(
  logger -> logger Lwt.t
)
ident(
  ext_ref Lwt.return
)
"src/unix/lwt_log.ml" 115 4434 4448 "src/unix/lwt_log.ml" 115 4434 4455
type(
  ?template:string ->
  close_mode:_[< `Close | `Keep > `Close ] ->
  channel:Lwt_io.output Lwt_io.channel -> unit -> logger
)
ident(
  int_ref channel "src/unix/lwt_log.ml" 86 3152 3156 "src/unix/lwt_log.ml" 86 3152 3163
)
"src/unix/lwt_log.ml" 115 4434 4457 "src/unix/lwt_log.ml" 115 4434 4465
type(
  string
)
ident(
  int_ref template "src/unix/lwt_log.ml" 106 3987 3998 "src/unix/lwt_log.ml" 106 3987 4006
)
"src/unix/lwt_log.ml" 115 4434 4478 "src/unix/lwt_log.ml" 115 4434 4484
type(
  _[< `Close | `Keep > `Close ] as 'b
)
"src/unix/lwt_log.ml" 115 4434 4494 "src/unix/lwt_log.ml" 115 4434 4496
type(
  Lwt_io.output Lwt_io.channel
)
ident(
  int_ref oc "src/unix/lwt_log.ml" 114 4384 4390 "src/unix/lwt_log.ml" 114 4384 4392
)
"src/unix/lwt_log.ml" 115 4434 4497 "src/unix/lwt_log.ml" 115 4434 4499
type(
  unit
)
"src/unix/lwt_log.ml" 115 4434 4447 "src/unix/lwt_log.ml" 115 4434 4500
call(
  stack
)
type(
  logger
)
"src/unix/lwt_log.ml" 115 4434 4436 "src/unix/lwt_log.ml" 115 4434 4500
call(
  tail
)
type(
  logger Lwt.t
)
"src/unix/lwt_log.ml" 114 4384 4386 "src/unix/lwt_log.ml" 115 4434 4500
type(
  logger Lwt.t
)
"src/unix/lwt_log.ml" 113 4351 4353 "src/unix/lwt_log.ml" 115 4434 4500
type(
  logger Lwt.t
)
"src/unix/lwt_log.ml" 112 4296 4341 "src/unix/lwt_log.ml" 115 4434 4500
type(
  Lwt_unix.file_descr -> logger Lwt.t
)
"src/unix/lwt_log.ml" 112 4296 4298 "src/unix/lwt_log.ml" 115 4434 4500
call(
  tail
)
type(
  logger Lwt.t
)
"src/unix/lwt_log.ml" 107 4088 4090 "src/unix/lwt_log.ml" 115 4434 4500
type(
  logger Lwt.t
)
"src/unix/lwt_log.ml" 117 4502 4506 "src/unix/lwt_log.ml" 117 4502 4516
type(
  level -> int
)
ident(
  def level_code "src/unix/lwt_log.ml" 125 4621 4621 "src/unix/lwt_log.ml" 1 0 -1
)
"src/unix/lwt_log.ml" 118 4528 4532 "src/unix/lwt_log.ml" 118 4528 4537
type(
  level
)
"src/unix/lwt_log.ml" 118 4528 4541 "src/unix/lwt_log.ml" 118 4528 4542
type(
  int
)
"src/unix/lwt_log.ml" 119 4543 4547 "src/unix/lwt_log.ml" 119 4543 4552
type(
  level
)
"src/unix/lwt_log.ml" 119 4543 4556 "src/unix/lwt_log.ml" 119 4543 4557
type(
  int
)
"src/unix/lwt_log.ml" 120 4558 4562 "src/unix/lwt_log.ml" 120 4558 4569
type(
  level
)
"src/unix/lwt_log.ml" 120 4558 4573 "src/unix/lwt_log.ml" 120 4558 4574
type(
  int
)
"src/unix/lwt_log.ml" 121 4575 4579 "src/unix/lwt_log.ml" 121 4575 4585
type(
  level
)
"src/unix/lwt_log.ml" 121 4575 4589 "src/unix/lwt_log.ml" 121 4575 4590
type(
  int
)
"src/unix/lwt_log.ml" 122 4591 4595 "src/unix/lwt_log.ml" 122 4591 4599
type(
  level
)
"src/unix/lwt_log.ml" 122 4591 4603 "src/unix/lwt_log.ml" 122 4591 4604
type(
  int
)
"src/unix/lwt_log.ml" 123 4605 4609 "src/unix/lwt_log.ml" 123 4605 4614
type(
  level
)
"src/unix/lwt_log.ml" 123 4605 4618 "src/unix/lwt_log.ml" 123 4605 4619
type(
  int
)
"src/unix/lwt_log.ml" 117 4502 4519 "src/unix/lwt_log.ml" 123 4605 4619
type(
  level -> int
)
"src/unix/lwt_log.ml" 130 4873 4877 "src/unix/lwt_log.ml" 130 4873 4890
type(
  [< `Auth
   | `Authpriv
   | `Console
   | `Cron
   | `Daemon
   | `FTP
   | `Kernel
   | `LPR
   | `Local0
   | `Local1
   | `Local2
   | `Local3
   | `Local4
   | `Local5
   | `Local6
   | `Local7
   | `Mail
   | `NTP
   | `News
   | `Security
   | `Syslog
   | `UUCP
   | `User ] ->
  int
)
ident(
  def facility_code "src/unix/lwt_log.ml" 155 5291 5291 "src/unix/lwt_log.ml" 1 0 -1
)
"src/unix/lwt_log.ml" 131 4902 4906 "src/unix/lwt_log.ml" 131 4902 4913
type(
  [< `Auth
   | `Authpriv
   | `Console
   | `Cron
   | `Daemon
   | `FTP
   | `Kernel
   | `LPR
   | `Local0
   | `Local1
   | `Local2
   | `Local3
   | `Local4
   | `Local5
   | `Local6
   | `Local7
   | `Mail
   | `NTP
   | `News
   | `Security
   | `Syslog
   | `UUCP
   | `User ]
  as 'a
)
"src/unix/lwt_log.ml" 131 4902 4917 "src/unix/lwt_log.ml" 131 4902 4918
type(
  int
)
"src/unix/lwt_log.ml" 132 4919 4923 "src/unix/lwt_log.ml" 132 4919 4928
type(
  'a
)
"src/unix/lwt_log.ml" 132 4919 4932 "src/unix/lwt_log.ml" 132 4919 4933
type(
  int
)
"src/unix/lwt_log.ml" 133 4934 4938 "src/unix/lwt_log.ml" 133 4934 4943
type(
  'a
)
"src/unix/lwt_log.ml" 133 4934 4947 "src/unix/lwt_log.ml" 133 4934 4948
type(
  int
)
"src/unix/lwt_log.ml" 134 4949 4953 "src/unix/lwt_log.ml" 134 4949 4960
type(
  'a
)
"src/unix/lwt_log.ml" 134 4949 4964 "src/unix/lwt_log.ml" 134 4949 4965
type(
  int
)
"src/unix/lwt_log.ml" 135 4966 4970 "src/unix/lwt_log.ml" 135 4966 4975
type(
  'a
)
"src/unix/lwt_log.ml" 135 4966 4979 "src/unix/lwt_log.ml" 135 4966 4980
type(
  int
)
"src/unix/lwt_log.ml" 136 4981 4985 "src/unix/lwt_log.ml" 136 4981 4992
type(
  'a
)
"src/unix/lwt_log.ml" 136 4981 4996 "src/unix/lwt_log.ml" 136 4981 4997
type(
  int
)
"src/unix/lwt_log.ml" 137 4998 5002 "src/unix/lwt_log.ml" 137 4998 5006
type(
  'a
)
"src/unix/lwt_log.ml" 137 4998 5010 "src/unix/lwt_log.ml" 137 4998 5011
type(
  int
)
"src/unix/lwt_log.ml" 138 5012 5016 "src/unix/lwt_log.ml" 138 5012 5021
type(
  'a
)
"src/unix/lwt_log.ml" 138 5012 5025 "src/unix/lwt_log.ml" 138 5012 5026
type(
  int
)
"src/unix/lwt_log.ml" 139 5027 5031 "src/unix/lwt_log.ml" 139 5027 5036
type(
  'a
)
"src/unix/lwt_log.ml" 139 5027 5040 "src/unix/lwt_log.ml" 139 5027 5041
type(
  int
)
"src/unix/lwt_log.ml" 140 5042 5046 "src/unix/lwt_log.ml" 140 5042 5051
type(
  'a
)
"src/unix/lwt_log.ml" 140 5042 5055 "src/unix/lwt_log.ml" 140 5042 5056
type(
  int
)
"src/unix/lwt_log.ml" 141 5057 5061 "src/unix/lwt_log.ml" 141 5057 5070
type(
  'a
)
"src/unix/lwt_log.ml" 141 5057 5074 "src/unix/lwt_log.ml" 141 5057 5076
type(
  int
)
"src/unix/lwt_log.ml" 142 5077 5081 "src/unix/lwt_log.ml" 142 5077 5085
type(
  'a
)
"src/unix/lwt_log.ml" 142 5077 5089 "src/unix/lwt_log.ml" 142 5077 5091
type(
  int
)
"src/unix/lwt_log.ml" 143 5092 5096 "src/unix/lwt_log.ml" 143 5092 5100
type(
  'a
)
"src/unix/lwt_log.ml" 143 5092 5104 "src/unix/lwt_log.ml" 143 5092 5106
type(
  int
)
"src/unix/lwt_log.ml" 144 5107 5111 "src/unix/lwt_log.ml" 144 5107 5120
type(
  'a
)
"src/unix/lwt_log.ml" 144 5107 5124 "src/unix/lwt_log.ml" 144 5107 5126
type(
  int
)
"src/unix/lwt_log.ml" 145 5127 5131 "src/unix/lwt_log.ml" 145 5127 5139
type(
  'a
)
"src/unix/lwt_log.ml" 145 5127 5143 "src/unix/lwt_log.ml" 145 5127 5145
type(
  int
)
"src/unix/lwt_log.ml" 146 5146 5150 "src/unix/lwt_log.ml" 146 5146 5157
type(
  'a
)
"src/unix/lwt_log.ml" 146 5146 5161 "src/unix/lwt_log.ml" 146 5146 5163
type(
  int
)
"src/unix/lwt_log.ml" 147 5164 5168 "src/unix/lwt_log.ml" 147 5164 5175
type(
  'a
)
"src/unix/lwt_log.ml" 147 5164 5179 "src/unix/lwt_log.ml" 147 5164 5181
type(
  int
)
"src/unix/lwt_log.ml" 148 5182 5186 "src/unix/lwt_log.ml" 148 5182 5193
type(
  'a
)
"src/unix/lwt_log.ml" 148 5182 5197 "src/unix/lwt_log.ml" 148 5182 5199
type(
  int
)
"src/unix/lwt_log.ml" 149 5200 5204 "src/unix/lwt_log.ml" 149 5200 5211
type(
  'a
)
"src/unix/lwt_log.ml" 149 5200 5215 "src/unix/lwt_log.ml" 149 5200 5217
type(
  int
)
"src/unix/lwt_log.ml" 150 5218 5222 "src/unix/lwt_log.ml" 150 5218 5229
type(
  'a
)
"src/unix/lwt_log.ml" 150 5218 5233 "src/unix/lwt_log.ml" 150 5218 5235
type(
  int
)
"src/unix/lwt_log.ml" 151 5236 5240 "src/unix/lwt_log.ml" 151 5236 5247
type(
  'a
)
"src/unix/lwt_log.ml" 151 5236 5251 "src/unix/lwt_log.ml" 151 5236 5253
type(
  int
)
"src/unix/lwt_log.ml" 152 5254 5258 "src/unix/lwt_log.ml" 152 5254 5265
type(
  'a
)
"src/unix/lwt_log.ml" 152 5254 5269 "src/unix/lwt_log.ml" 152 5254 5271
type(
  int
)
"src/unix/lwt_log.ml" 153 5272 5276 "src/unix/lwt_log.ml" 153 5272 5283
type(
  'a
)
"src/unix/lwt_log.ml" 153 5272 5287 "src/unix/lwt_log.ml" 153 5272 5289
type(
  int
)
"src/unix/lwt_log.ml" 130 4873 4893 "src/unix/lwt_log.ml" 153 5272 5289
type(
  'a -> int
)
"src/unix/lwt_log.ml" 157 5337 5341 "src/unix/lwt_log.ml" 157 5337 5349
type(
  Lwt_unix.file_descr -> unit Lwt.t
)
ident(
  def shutdown "src/unix/lwt_log.ml" 164 5579 5579 "src/unix/lwt_log.ml" 1 0 -1
)
"src/unix/lwt_log.ml" 157 5337 5350 "src/unix/lwt_log.ml" 157 5337 5352
type(
  Lwt_unix.file_descr
)
ident(
  def fd "src/unix/lwt_log.ml" 158 5355 5357 "src/unix/lwt_log.ml" 159 5397 5416
)
"src/unix/lwt_log.ml" 158 5355 5357 "src/unix/lwt_log.ml" 158 5355 5374
type(
  Lwt_unix.file_descr -> Lwt_unix.shutdown_command -> unit
)
ident(
  ext_ref Lwt_unix.shutdown
)
"src/unix/lwt_log.ml" 158 5355 5375 "src/unix/lwt_log.ml" 158 5355 5377
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 157 5337 5350 "src/unix/lwt_log.ml" 157 5337 5352
)
"src/unix/lwt_log.ml" 158 5355 5378 "src/unix/lwt_log.ml" 158 5355 5395
type(
  Lwt_unix.shutdown_command
)
"src/unix/lwt_log.ml" 158 5355 5357 "src/unix/lwt_log.ml" 158 5355 5395
call(
  stack
)
type(
  unit
)
"src/unix/lwt_log.ml" 159 5397 5399 "src/unix/lwt_log.ml" 159 5397 5413
type(
  Lwt_unix.file_descr -> unit Lwt.t
)
ident(
  ext_ref Lwt_unix.close
)
"src/unix/lwt_log.ml" 159 5397 5414 "src/unix/lwt_log.ml" 159 5397 5416
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 157 5337 5350 "src/unix/lwt_log.ml" 157 5337 5352
)
"src/unix/lwt_log.ml" 159 5397 5399 "src/unix/lwt_log.ml" 159 5397 5416
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 158 5355 5357 "src/unix/lwt_log.ml" 159 5397 5416
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 164 5579 5583 "src/unix/lwt_log.ml" 164 5579 5597
type(
  string list -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  def syslog_connect "src/unix/lwt_log.ml" 222 8100 8100 "src/unix/lwt_log.ml" 1 0 -1
)
"src/unix/lwt_log.ml" 164 5579 5598 "src/unix/lwt_log.ml" 164 5579 5603
type(
  string list
)
ident(
  def paths "src/unix/lwt_log.ml" 165 5606 5608 "src/unix/lwt_log.ml" 218 8010 8022
)
"src/unix/lwt_log.ml" 165 5606 5616 "src/unix/lwt_log.ml" 165 5606 5620
type(
  string list -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  def loop "src/unix/lwt_log.ml" 165 5606 5608 "src/unix/lwt_log.ml" 218 8010 8022
)
"src/unix/lwt_log.ml" 166 5632 5638 "src/unix/lwt_log.ml" 166 5632 5640
type(
  string list
)
"src/unix/lwt_log.ml" 168 5682 5690 "src/unix/lwt_log.ml" 168 5682 5700
type(
  (string -> unit, out_channel, unit, unit, unit, unit) format6 ->
  string -> unit
)
ident(
  int_ref log_intern "src/unix/lwt_log.ml" 33 1229 1233 "src/unix/lwt_log.ml" 33 1229 1243
)
"src/unix/lwt_log.ml" 168 5682 5701 "src/unix/lwt_log.ml" 168 5682 5755
type(
  (string -> unit, out_channel, unit, unit, unit, unit) format6
)
"src/unix/lwt_log.ml" 169 5756 5767 "src/unix/lwt_log.ml" 169 5756 5780
type(
  string -> string list -> string
)
ident(
  ext_ref String.concat
)
"src/unix/lwt_log.ml" 169 5756 5781 "src/unix/lwt_log.ml" 169 5756 5785
type(
  string
)
"src/unix/lwt_log.ml" 169 5756 5787 "src/unix/lwt_log.ml" 169 5756 5795
type(
  (string -> string) -> string list -> string list
)
ident(
  ext_ref List.map
)
"src/unix/lwt_log.ml" 169 5756 5797 "src/unix/lwt_log.ml" 169 5756 5811
type(
  (string -> string, unit, string) format -> string -> string
)
ident(
  ext_ref Printf.sprintf
)
"src/unix/lwt_log.ml" 169 5756 5812 "src/unix/lwt_log.ml" 169 5756 5820
type(
  (string -> string, unit, string) format
)
"src/unix/lwt_log.ml" 169 5756 5796 "src/unix/lwt_log.ml" 169 5756 5821
call(
  stack
)
type(
  string -> string
)
"src/unix/lwt_log.ml" 169 5756 5822 "src/unix/lwt_log.ml" 169 5756 5827
type(
  string list
)
ident(
  int_ref paths "src/unix/lwt_log.ml" 164 5579 5598 "src/unix/lwt_log.ml" 164 5579 5603
)
"src/unix/lwt_log.ml" 169 5756 5786 "src/unix/lwt_log.ml" 169 5756 5828
call(
  stack
)
type(
  string list
)
"src/unix/lwt_log.ml" 169 5756 5766 "src/unix/lwt_log.ml" 169 5756 5829
call(
  stack
)
type(
  string
)
"src/unix/lwt_log.ml" 168 5682 5690 "src/unix/lwt_log.ml" 169 5756 5829
call(
  stack
)
type(
  unit
)
"src/unix/lwt_log.ml" 170 5831 5839 "src/unix/lwt_log.ml" 170 5831 5847
type(
  exn -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  ext_ref Lwt.fail
)
"src/unix/lwt_log.ml" 170 5831 5859 "src/unix/lwt_log.ml" 170 5831 5877
type(
  Unix.error -> string
)
ident(
  ext_ref Unix.error_message
)
"src/unix/lwt_log.ml" 170 5831 5878 "src/unix/lwt_log.ml" 170 5831 5889
type(
  Unix.error
)
"src/unix/lwt_log.ml" 170 5831 5858 "src/unix/lwt_log.ml" 170 5831 5890
call(
  stack
)
type(
  string
)
"src/unix/lwt_log.ml" 170 5831 5848 "src/unix/lwt_log.ml" 170 5831 5891
type(
  exn
)
"src/unix/lwt_log.ml" 170 5831 5839 "src/unix/lwt_log.ml" 170 5831 5891
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 168 5682 5690 "src/unix/lwt_log.ml" 170 5831 5891
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 171 5892 5898 "src/unix/lwt_log.ml" 171 5892 5902
type(
  string
)
ident(
  def path "src/unix/lwt_log.ml" 172 5915 5923 "src/unix/lwt_log.ml" 216 7957 8004
)
"src/unix/lwt_log.ml" 171 5892 5906 "src/unix/lwt_log.ml" 171 5892 5911
type(
  string list
)
ident(
  def paths "src/unix/lwt_log.ml" 172 5915 5923 "src/unix/lwt_log.ml" 216 7957 8004
)
"src/unix/lwt_log.ml" 171 5892 5898 "src/unix/lwt_log.ml" 171 5892 5911
type(
  string list
)
"src/unix/lwt_log.ml" 173 5933 5943 "src/unix/lwt_log.ml" 173 5933 5953
type(
  Unix.file_kind option -> Unix.file_kind option Lwt.t
)
ident(
  ext_ref Lwt.return
)
"src/unix/lwt_log.ml" 173 5933 5961 "src/unix/lwt_log.ml" 173 5933 5970
type(
  string -> Unix.stats
)
ident(
  ext_ref Unix.stat
)
"src/unix/lwt_log.ml" 173 5933 5971 "src/unix/lwt_log.ml" 173 5933 5975
type(
  string
)
ident(
  int_ref path "src/unix/lwt_log.ml" 171 5892 5898 "src/unix/lwt_log.ml" 171 5892 5902
)
"src/unix/lwt_log.ml" 173 5933 5960 "src/unix/lwt_log.ml" 173 5933 5976
call(
  stack
)
type(
  Unix.stats
)
"src/unix/lwt_log.ml" 173 5933 5960 "src/unix/lwt_log.ml" 173 5933 5989
type(
  Unix.file_kind
)
"src/unix/lwt_log.ml" 173 5933 5954 "src/unix/lwt_log.ml" 173 5933 5990
type(
  Unix.file_kind option
)
"src/unix/lwt_log.ml" 173 5933 5943 "src/unix/lwt_log.ml" 173 5933 5990
call(
  stack
)
type(
  Unix.file_kind option Lwt.t
)
"src/unix/lwt_log.ml" 175 6004 6032 "src/unix/lwt_log.ml" 175 6004 6043
type(
  Unix.error
)
"src/unix/lwt_log.ml" 175 6004 6045 "src/unix/lwt_log.ml" 175 6004 6046
type(
  string
)
"src/unix/lwt_log.ml" 175 6004 6048 "src/unix/lwt_log.ml" 175 6004 6049
type(
  string
)
"src/unix/lwt_log.ml" 175 6004 6016 "src/unix/lwt_log.ml" 175 6004 6050
type(
  exn
)
"src/unix/lwt_log.ml" 176 6054 6068 "src/unix/lwt_log.ml" 176 6054 6083
type(
  Unix.file_kind option Lwt.t
)
ident(
  ext_ref Lwt.return_none
)
"src/unix/lwt_log.ml" 177 6084 6112 "src/unix/lwt_log.ml" 177 6084 6117
type(
  Unix.error
)
ident(
  def error "src/unix/lwt_log.ml" 178 6128 6142 "src/unix/lwt_log.ml" 179 6212 6241
)
"src/unix/lwt_log.ml" 177 6084 6119 "src/unix/lwt_log.ml" 177 6084 6120
type(
  string
)
"src/unix/lwt_log.ml" 177 6084 6122 "src/unix/lwt_log.ml" 177 6084 6123
type(
  string
)
"src/unix/lwt_log.ml" 177 6084 6096 "src/unix/lwt_log.ml" 177 6084 6124
type(
  exn
)
"src/unix/lwt_log.ml" 178 6128 6142 "src/unix/lwt_log.ml" 178 6128 6152
type(
  (string -> string -> unit, out_channel, unit, unit, unit, unit) format6 ->
  string -> string -> unit
)
ident(
  int_ref log_intern "src/unix/lwt_log.ml" 33 1229 1233 "src/unix/lwt_log.ml" 33 1229 1243
)
"src/unix/lwt_log.ml" 178 6128 6153 "src/unix/lwt_log.ml" 178 6128 6178
type(
  (string -> string -> unit, out_channel, unit, unit, unit, unit) format6
)
"src/unix/lwt_log.ml" 178 6128 6179 "src/unix/lwt_log.ml" 178 6128 6183
type(
  string
)
ident(
  int_ref path "src/unix/lwt_log.ml" 171 5892 5898 "src/unix/lwt_log.ml" 171 5892 5902
)
"src/unix/lwt_log.ml" 178 6128 6185 "src/unix/lwt_log.ml" 178 6128 6203
type(
  Unix.error -> string
)
ident(
  ext_ref Unix.error_message
)
"src/unix/lwt_log.ml" 178 6128 6204 "src/unix/lwt_log.ml" 178 6128 6209
type(
  Unix.error
)
ident(
  int_ref error "src/unix/lwt_log.ml" 177 6084 6112 "src/unix/lwt_log.ml" 177 6084 6117
)
"src/unix/lwt_log.ml" 178 6128 6184 "src/unix/lwt_log.ml" 178 6128 6210
call(
  stack
)
type(
  string
)
"src/unix/lwt_log.ml" 178 6128 6142 "src/unix/lwt_log.ml" 178 6128 6210
call(
  stack
)
type(
  unit
)
"src/unix/lwt_log.ml" 179 6212 6226 "src/unix/lwt_log.ml" 179 6212 6241
type(
  Unix.file_kind option Lwt.t
)
ident(
  ext_ref Lwt.return_none
)
"src/unix/lwt_log.ml" 178 6128 6142 "src/unix/lwt_log.ml" 179 6212 6241
type(
  Unix.file_kind option Lwt.t
)
"src/unix/lwt_log.ml" 172 5915 5923 "src/unix/lwt_log.ml" 180 6242 6253
type(
  Unix.file_kind option Lwt.t
)
"src/unix/lwt_log.ml" 180 6242 6254 "src/unix/lwt_log.ml" 180 6242 6257
type(
  Unix.file_kind option Lwt.t ->
  (Unix.file_kind option ->
   (syslog_connection_type * Lwt_unix.file_descr) Lwt.t) ->
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/unix/lwt_log.ml" 181 6268 6280 "src/unix/lwt_log.ml" 181 6268 6284
type(
  Unix.file_kind option
)
"src/unix/lwt_log.ml" 182 6288 6302 "src/unix/lwt_log.ml" 182 6288 6306
type(
  string list -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  int_ref loop "src/unix/lwt_log.ml" 165 5606 5616 "src/unix/lwt_log.ml" 165 5606 5620
)
"src/unix/lwt_log.ml" 182 6288 6307 "src/unix/lwt_log.ml" 182 6288 6312
type(
  string list
)
ident(
  int_ref paths "src/unix/lwt_log.ml" 171 5892 5906 "src/unix/lwt_log.ml" 171 5892 5911
)
"src/unix/lwt_log.ml" 182 6288 6302 "src/unix/lwt_log.ml" 182 6288 6312
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 183 6313 6330 "src/unix/lwt_log.ml" 183 6313 6341
type(
  Unix.file_kind
)
"src/unix/lwt_log.ml" 183 6313 6325 "src/unix/lwt_log.ml" 183 6313 6341
type(
  Unix.file_kind option
)
"src/unix/lwt_log.ml" 185 6407 6425 "src/unix/lwt_log.ml" 185 6407 6427
type(
  Lwt_unix.file_descr
)
ident(
  def fd "src/unix/lwt_log.ml" 186 6480 6494 "src/unix/lwt_log.ml" 212 7802 7840
)
"src/unix/lwt_log.ml" 185 6407 6430 "src/unix/lwt_log.ml" 185 6407 6445
type(
  Lwt_unix.socket_domain ->
  Lwt_unix.socket_type -> int -> Lwt_unix.file_descr
)
ident(
  ext_ref Lwt_unix.socket
)
"src/unix/lwt_log.ml" 185 6407 6446 "src/unix/lwt_log.ml" 185 6407 6458
type(
  Lwt_unix.socket_domain
)
"src/unix/lwt_log.ml" 185 6407 6459 "src/unix/lwt_log.ml" 185 6407 6474
type(
  Lwt_unix.socket_type
)
"src/unix/lwt_log.ml" 185 6407 6475 "src/unix/lwt_log.ml" 185 6407 6476
type(
  int
)
"src/unix/lwt_log.ml" 185 6407 6430 "src/unix/lwt_log.ml" 185 6407 6476
call(
  stack
)
type(
  Lwt_unix.file_descr
)
"src/unix/lwt_log.ml" 186 6480 6494 "src/unix/lwt_log.ml" 186 6480 6503
type(
  (unit -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t) ->
  (exn -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t) ->
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  ext_ref Lwt.catch
)
"src/unix/lwt_log.ml" 187 6504 6525 "src/unix/lwt_log.ml" 187 6504 6527
type(
  unit
)
"src/unix/lwt_log.ml" 188 6531 6549 "src/unix/lwt_log.ml" 188 6531 6565
type(
  Lwt_unix.file_descr -> Lwt_unix.sockaddr -> unit Lwt.t
)
ident(
  ext_ref Lwt_unix.connect
)
"src/unix/lwt_log.ml" 188 6531 6566 "src/unix/lwt_log.ml" 188 6531 6568
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 185 6407 6425 "src/unix/lwt_log.ml" 185 6407 6427
)
"src/unix/lwt_log.ml" 188 6531 6585 "src/unix/lwt_log.ml" 188 6531 6589
type(
  string
)
ident(
  int_ref path "src/unix/lwt_log.ml" 171 5892 5898 "src/unix/lwt_log.ml" 171 5892 5902
)
"src/unix/lwt_log.ml" 188 6531 6569 "src/unix/lwt_log.ml" 188 6531 6590
type(
  Lwt_unix.sockaddr
)
"src/unix/lwt_log.ml" 188 6531 6549 "src/unix/lwt_log.ml" 188 6531 6590
call(
  stack
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 188 6531 6591 "src/unix/lwt_log.ml" 188 6531 6594
type(
  unit Lwt.t ->
  (unit -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t) ->
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/unix/lwt_log.ml" 188 6531 6599 "src/unix/lwt_log.ml" 188 6531 6601
type(
  unit
)
"src/unix/lwt_log.ml" 189 6605 6623 "src/unix/lwt_log.ml" 189 6605 6649
type(
  Lwt_unix.file_descr -> unit
)
ident(
  ext_ref Lwt_unix.set_close_on_exec
)
"src/unix/lwt_log.ml" 189 6605 6650 "src/unix/lwt_log.ml" 189 6605 6652
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 185 6407 6425 "src/unix/lwt_log.ml" 185 6407 6427
)
"src/unix/lwt_log.ml" 189 6605 6623 "src/unix/lwt_log.ml" 189 6605 6652
call(
  stack
)
type(
  unit
)
"src/unix/lwt_log.ml" 190 6654 6672 "src/unix/lwt_log.ml" 190 6654 6682
type(
  syslog_connection_type * Lwt_unix.file_descr ->
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  ext_ref Lwt.return
)
"src/unix/lwt_log.ml" 190 6654 6684 "src/unix/lwt_log.ml" 190 6654 6689
type(
  syslog_connection_type
)
"src/unix/lwt_log.ml" 190 6654 6691 "src/unix/lwt_log.ml" 190 6654 6693
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 185 6407 6425 "src/unix/lwt_log.ml" 185 6407 6427
)
"src/unix/lwt_log.ml" 190 6654 6683 "src/unix/lwt_log.ml" 190 6654 6694
type(
  syslog_connection_type * Lwt_unix.file_descr
)
"src/unix/lwt_log.ml" 190 6654 6672 "src/unix/lwt_log.ml" 190 6654 6694
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 189 6605 6623 "src/unix/lwt_log.ml" 190 6654 6694
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 188 6531 6595 "src/unix/lwt_log.ml" 190 6654 6694
type(
  unit -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 188 6531 6549 "src/unix/lwt_log.ml" 190 6654 6694
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 187 6504 6520 "src/unix/lwt_log.ml" 190 6654 6695
type(
  unit -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 192 6722 6756 "src/unix/lwt_log.ml" 192 6722 6771
type(
  Unix.error
)
"src/unix/lwt_log.ml" 192 6722 6773 "src/unix/lwt_log.ml" 192 6722 6774
type(
  string
)
"src/unix/lwt_log.ml" 192 6722 6776 "src/unix/lwt_log.ml" 192 6722 6777
type(
  string
)
"src/unix/lwt_log.ml" 192 6722 6740 "src/unix/lwt_log.ml" 192 6722 6778
type(
  exn
)
"src/unix/lwt_log.ml" 193 6788 6808 "src/unix/lwt_log.ml" 193 6788 6822
type(
  Lwt_unix.file_descr -> unit Lwt.t
)
ident(
  ext_ref Lwt_unix.close
)
"src/unix/lwt_log.ml" 193 6788 6823 "src/unix/lwt_log.ml" 193 6788 6825
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 185 6407 6425 "src/unix/lwt_log.ml" 185 6407 6427
)
"src/unix/lwt_log.ml" 193 6788 6808 "src/unix/lwt_log.ml" 193 6788 6825
call(
  stack
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 193 6788 6826 "src/unix/lwt_log.ml" 193 6788 6829
type(
  unit Lwt.t ->
  (unit -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t) ->
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/unix/lwt_log.ml" 193 6788 6834 "src/unix/lwt_log.ml" 193 6788 6836
type(
  unit
)
"src/unix/lwt_log.ml" 195 6897 6921 "src/unix/lwt_log.ml" 195 6897 6923
type(
  Lwt_unix.file_descr
)
ident(
  def fd "src/unix/lwt_log.ml" 196 6977 6997 "src/unix/lwt_log.ml" 206 7506 7550
)
"src/unix/lwt_log.ml" 195 6897 6926 "src/unix/lwt_log.ml" 195 6897 6941
type(
  Lwt_unix.socket_domain ->
  Lwt_unix.socket_type -> int -> Lwt_unix.file_descr
)
ident(
  ext_ref Lwt_unix.socket
)
"src/unix/lwt_log.ml" 195 6897 6942 "src/unix/lwt_log.ml" 195 6897 6954
type(
  Lwt_unix.socket_domain
)
"src/unix/lwt_log.ml" 195 6897 6955 "src/unix/lwt_log.ml" 195 6897 6971
type(
  Lwt_unix.socket_type
)
"src/unix/lwt_log.ml" 195 6897 6972 "src/unix/lwt_log.ml" 195 6897 6973
type(
  int
)
"src/unix/lwt_log.ml" 195 6897 6926 "src/unix/lwt_log.ml" 195 6897 6973
call(
  stack
)
type(
  Lwt_unix.file_descr
)
"src/unix/lwt_log.ml" 196 6977 6997 "src/unix/lwt_log.ml" 196 6977 7006
type(
  (unit -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t) ->
  (exn -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t) ->
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  ext_ref Lwt.catch
)
"src/unix/lwt_log.ml" 197 7007 7034 "src/unix/lwt_log.ml" 197 7007 7036
type(
  unit
)
"src/unix/lwt_log.ml" 198 7040 7061 "src/unix/lwt_log.ml" 198 7040 7077
type(
  Lwt_unix.file_descr -> Lwt_unix.sockaddr -> unit Lwt.t
)
ident(
  ext_ref Lwt_unix.connect
)
"src/unix/lwt_log.ml" 198 7040 7078 "src/unix/lwt_log.ml" 198 7040 7080
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 195 6897 6921 "src/unix/lwt_log.ml" 195 6897 6923
)
"src/unix/lwt_log.ml" 198 7040 7097 "src/unix/lwt_log.ml" 198 7040 7101
type(
  string
)
ident(
  int_ref path "src/unix/lwt_log.ml" 171 5892 5898 "src/unix/lwt_log.ml" 171 5892 5902
)
"src/unix/lwt_log.ml" 198 7040 7081 "src/unix/lwt_log.ml" 198 7040 7102
type(
  Lwt_unix.sockaddr
)
"src/unix/lwt_log.ml" 198 7040 7061 "src/unix/lwt_log.ml" 198 7040 7102
call(
  stack
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 198 7040 7103 "src/unix/lwt_log.ml" 198 7040 7106
type(
  unit Lwt.t ->
  (unit -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t) ->
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/unix/lwt_log.ml" 198 7040 7111 "src/unix/lwt_log.ml" 198 7040 7113
type(
  unit
)
"src/unix/lwt_log.ml" 199 7117 7141 "src/unix/lwt_log.ml" 199 7117 7167
type(
  Lwt_unix.file_descr -> unit
)
ident(
  ext_ref Lwt_unix.set_close_on_exec
)
"src/unix/lwt_log.ml" 199 7117 7168 "src/unix/lwt_log.ml" 199 7117 7170
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 195 6897 6921 "src/unix/lwt_log.ml" 195 6897 6923
)
"src/unix/lwt_log.ml" 199 7117 7141 "src/unix/lwt_log.ml" 199 7117 7170
call(
  stack
)
type(
  unit
)
"src/unix/lwt_log.ml" 200 7172 7196 "src/unix/lwt_log.ml" 200 7172 7206
type(
  syslog_connection_type * Lwt_unix.file_descr ->
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  ext_ref Lwt.return
)
"src/unix/lwt_log.ml" 200 7172 7208 "src/unix/lwt_log.ml" 200 7172 7214
type(
  syslog_connection_type
)
"src/unix/lwt_log.ml" 200 7172 7216 "src/unix/lwt_log.ml" 200 7172 7218
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 195 6897 6921 "src/unix/lwt_log.ml" 195 6897 6923
)
"src/unix/lwt_log.ml" 200 7172 7207 "src/unix/lwt_log.ml" 200 7172 7219
type(
  syslog_connection_type * Lwt_unix.file_descr
)
"src/unix/lwt_log.ml" 200 7172 7196 "src/unix/lwt_log.ml" 200 7172 7219
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 199 7117 7141 "src/unix/lwt_log.ml" 200 7172 7219
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 198 7040 7107 "src/unix/lwt_log.ml" 200 7172 7219
type(
  unit -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 198 7040 7061 "src/unix/lwt_log.ml" 200 7172 7219
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 197 7007 7029 "src/unix/lwt_log.ml" 200 7172 7220
type(
  unit -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 202 7253 7293 "src/unix/lwt_log.ml" 202 7253 7298
type(
  Unix.error
)
ident(
  def error "src/unix/lwt_log.ml" 203 7309 7335 "src/unix/lwt_log.ml" 205 7469 7505
)
"src/unix/lwt_log.ml" 202 7253 7300 "src/unix/lwt_log.ml" 202 7253 7301
type(
  string
)
"src/unix/lwt_log.ml" 202 7253 7303 "src/unix/lwt_log.ml" 202 7253 7304
type(
  string
)
"src/unix/lwt_log.ml" 202 7253 7277 "src/unix/lwt_log.ml" 202 7253 7305
type(
  exn
)
"src/unix/lwt_log.ml" 203 7309 7335 "src/unix/lwt_log.ml" 203 7309 7349
type(
  Lwt_unix.file_descr -> unit Lwt.t
)
ident(
  ext_ref Lwt_unix.close
)
"src/unix/lwt_log.ml" 203 7309 7350 "src/unix/lwt_log.ml" 203 7309 7352
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 195 6897 6921 "src/unix/lwt_log.ml" 195 6897 6923
)
"src/unix/lwt_log.ml" 203 7309 7335 "src/unix/lwt_log.ml" 203 7309 7352
call(
  stack
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 203 7309 7353 "src/unix/lwt_log.ml" 203 7309 7356
type(
  unit Lwt.t ->
  (unit -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t) ->
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/unix/lwt_log.ml" 203 7309 7361 "src/unix/lwt_log.ml" 203 7309 7363
type(
  unit
)
"src/unix/lwt_log.ml" 204 7367 7393 "src/unix/lwt_log.ml" 204 7367 7403
type(
  (string -> string -> unit, out_channel, unit, unit, unit, unit) format6 ->
  string -> string -> unit
)
ident(
  int_ref log_intern "src/unix/lwt_log.ml" 33 1229 1233 "src/unix/lwt_log.ml" 33 1229 1243
)
"src/unix/lwt_log.ml" 204 7367 7404 "src/unix/lwt_log.ml" 204 7367 7435
type(
  (string -> string -> unit, out_channel, unit, unit, unit, unit) format6
)
"src/unix/lwt_log.ml" 204 7367 7436 "src/unix/lwt_log.ml" 204 7367 7440
type(
  string
)
ident(
  int_ref path "src/unix/lwt_log.ml" 171 5892 5898 "src/unix/lwt_log.ml" 171 5892 5902
)
"src/unix/lwt_log.ml" 204 7367 7442 "src/unix/lwt_log.ml" 204 7367 7460
type(
  Unix.error -> string
)
ident(
  ext_ref Unix.error_message
)
"src/unix/lwt_log.ml" 204 7367 7461 "src/unix/lwt_log.ml" 204 7367 7466
type(
  Unix.error
)
ident(
  int_ref error "src/unix/lwt_log.ml" 202 7253 7293 "src/unix/lwt_log.ml" 202 7253 7298
)
"src/unix/lwt_log.ml" 204 7367 7441 "src/unix/lwt_log.ml" 204 7367 7467
call(
  stack
)
type(
  string
)
"src/unix/lwt_log.ml" 204 7367 7393 "src/unix/lwt_log.ml" 204 7367 7467
call(
  stack
)
type(
  unit
)
"src/unix/lwt_log.ml" 205 7469 7495 "src/unix/lwt_log.ml" 205 7469 7499
type(
  string list -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  int_ref loop "src/unix/lwt_log.ml" 165 5606 5616 "src/unix/lwt_log.ml" 165 5606 5620
)
"src/unix/lwt_log.ml" 205 7469 7500 "src/unix/lwt_log.ml" 205 7469 7505
type(
  string list
)
ident(
  int_ref paths "src/unix/lwt_log.ml" 171 5892 5906 "src/unix/lwt_log.ml" 171 5892 5911
)
"src/unix/lwt_log.ml" 205 7469 7495 "src/unix/lwt_log.ml" 205 7469 7505
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 204 7367 7393 "src/unix/lwt_log.ml" 205 7469 7505
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 203 7309 7357 "src/unix/lwt_log.ml" 205 7469 7505
type(
  unit -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 203 7309 7335 "src/unix/lwt_log.ml" 205 7469 7505
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 206 7506 7530 "src/unix/lwt_log.ml" 206 7506 7533
type(
  exn
)
ident(
  def exn "src/unix/lwt_log.ml" 206 7506 7537 "src/unix/lwt_log.ml" 206 7506 7549
)
"src/unix/lwt_log.ml" 206 7506 7537 "src/unix/lwt_log.ml" 206 7506 7545
type(
  exn -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  ext_ref Lwt.fail
)
"src/unix/lwt_log.ml" 206 7506 7546 "src/unix/lwt_log.ml" 206 7506 7549
type(
  exn
)
ident(
  int_ref exn "src/unix/lwt_log.ml" 206 7506 7530 "src/unix/lwt_log.ml" 206 7506 7533
)
"src/unix/lwt_log.ml" 206 7506 7537 "src/unix/lwt_log.ml" 206 7506 7549
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 201 7221 7243 "src/unix/lwt_log.ml" 206 7506 7550
type(
  exn -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 196 6977 6997 "src/unix/lwt_log.ml" 206 7506 7550
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 195 6897 6917 "src/unix/lwt_log.ml" 206 7506 7550
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 193 6788 6830 "src/unix/lwt_log.ml" 206 7506 7550
type(
  unit -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 192 6722 6782 "src/unix/lwt_log.ml" 207 7551 7572
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 208 7573 7607 "src/unix/lwt_log.ml" 208 7573 7612
type(
  Unix.error
)
ident(
  def error "src/unix/lwt_log.ml" 209 7623 7643 "src/unix/lwt_log.ml" 211 7771 7801
)
"src/unix/lwt_log.ml" 208 7573 7614 "src/unix/lwt_log.ml" 208 7573 7615
type(
  string
)
"src/unix/lwt_log.ml" 208 7573 7617 "src/unix/lwt_log.ml" 208 7573 7618
type(
  string
)
"src/unix/lwt_log.ml" 208 7573 7591 "src/unix/lwt_log.ml" 208 7573 7619
type(
  exn
)
"src/unix/lwt_log.ml" 209 7623 7643 "src/unix/lwt_log.ml" 209 7623 7657
type(
  Lwt_unix.file_descr -> unit Lwt.t
)
ident(
  ext_ref Lwt_unix.close
)
"src/unix/lwt_log.ml" 209 7623 7658 "src/unix/lwt_log.ml" 209 7623 7660
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 185 6407 6425 "src/unix/lwt_log.ml" 185 6407 6427
)
"src/unix/lwt_log.ml" 209 7623 7643 "src/unix/lwt_log.ml" 209 7623 7660
call(
  stack
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 209 7623 7661 "src/unix/lwt_log.ml" 209 7623 7664
type(
  unit Lwt.t ->
  (unit -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t) ->
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/unix/lwt_log.ml" 209 7623 7669 "src/unix/lwt_log.ml" 209 7623 7671
type(
  unit
)
"src/unix/lwt_log.ml" 210 7675 7695 "src/unix/lwt_log.ml" 210 7675 7705
type(
  (string -> string -> unit, out_channel, unit, unit, unit, unit) format6 ->
  string -> string -> unit
)
ident(
  int_ref log_intern "src/unix/lwt_log.ml" 33 1229 1233 "src/unix/lwt_log.ml" 33 1229 1243
)
"src/unix/lwt_log.ml" 210 7675 7706 "src/unix/lwt_log.ml" 210 7675 7737
type(
  (string -> string -> unit, out_channel, unit, unit, unit, unit) format6
)
"src/unix/lwt_log.ml" 210 7675 7738 "src/unix/lwt_log.ml" 210 7675 7742
type(
  string
)
ident(
  int_ref path "src/unix/lwt_log.ml" 171 5892 5898 "src/unix/lwt_log.ml" 171 5892 5902
)
"src/unix/lwt_log.ml" 210 7675 7744 "src/unix/lwt_log.ml" 210 7675 7762
type(
  Unix.error -> string
)
ident(
  ext_ref Unix.error_message
)
"src/unix/lwt_log.ml" 210 7675 7763 "src/unix/lwt_log.ml" 210 7675 7768
type(
  Unix.error
)
ident(
  int_ref error "src/unix/lwt_log.ml" 208 7573 7607 "src/unix/lwt_log.ml" 208 7573 7612
)
"src/unix/lwt_log.ml" 210 7675 7743 "src/unix/lwt_log.ml" 210 7675 7769
call(
  stack
)
type(
  string
)
"src/unix/lwt_log.ml" 210 7675 7695 "src/unix/lwt_log.ml" 210 7675 7769
call(
  stack
)
type(
  unit
)
"src/unix/lwt_log.ml" 211 7771 7791 "src/unix/lwt_log.ml" 211 7771 7795
type(
  string list -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  int_ref loop "src/unix/lwt_log.ml" 165 5606 5616 "src/unix/lwt_log.ml" 165 5606 5620
)
"src/unix/lwt_log.ml" 211 7771 7796 "src/unix/lwt_log.ml" 211 7771 7801
type(
  string list
)
ident(
  int_ref paths "src/unix/lwt_log.ml" 171 5892 5906 "src/unix/lwt_log.ml" 171 5892 5911
)
"src/unix/lwt_log.ml" 211 7771 7791 "src/unix/lwt_log.ml" 211 7771 7801
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 210 7675 7695 "src/unix/lwt_log.ml" 211 7771 7801
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 209 7623 7665 "src/unix/lwt_log.ml" 211 7771 7801
type(
  unit -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 209 7623 7643 "src/unix/lwt_log.ml" 211 7771 7801
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 212 7802 7820 "src/unix/lwt_log.ml" 212 7802 7823
type(
  exn
)
ident(
  def exn "src/unix/lwt_log.ml" 212 7802 7827 "src/unix/lwt_log.ml" 212 7802 7839
)
"src/unix/lwt_log.ml" 212 7802 7827 "src/unix/lwt_log.ml" 212 7802 7835
type(
  exn -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  ext_ref Lwt.fail
)
"src/unix/lwt_log.ml" 212 7802 7836 "src/unix/lwt_log.ml" 212 7802 7839
type(
  exn
)
ident(
  int_ref exn "src/unix/lwt_log.ml" 212 7802 7820 "src/unix/lwt_log.ml" 212 7802 7823
)
"src/unix/lwt_log.ml" 212 7802 7827 "src/unix/lwt_log.ml" 212 7802 7839
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 191 6696 6712 "src/unix/lwt_log.ml" 212 7802 7840
type(
  exn -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 186 6480 6494 "src/unix/lwt_log.ml" 212 7802 7840
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 183 6313 6345 "src/unix/lwt_log.ml" 213 7863 7878
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 214 7879 7896 "src/unix/lwt_log.ml" 214 7879 7897
type(
  Unix.file_kind
)
"src/unix/lwt_log.ml" 214 7879 7891 "src/unix/lwt_log.ml" 214 7879 7897
type(
  Unix.file_kind option
)
"src/unix/lwt_log.ml" 215 7901 7915 "src/unix/lwt_log.ml" 215 7901 7925
type(
  (string -> unit, out_channel, unit, unit, unit, unit) format6 ->
  string -> unit
)
ident(
  int_ref log_intern "src/unix/lwt_log.ml" 33 1229 1233 "src/unix/lwt_log.ml" 33 1229 1243
)
"src/unix/lwt_log.ml" 215 7901 7926 "src/unix/lwt_log.ml" 215 7901 7950
type(
  (string -> unit, out_channel, unit, unit, unit, unit) format6
)
"src/unix/lwt_log.ml" 215 7901 7951 "src/unix/lwt_log.ml" 215 7901 7955
type(
  string
)
ident(
  int_ref path "src/unix/lwt_log.ml" 171 5892 5898 "src/unix/lwt_log.ml" 171 5892 5902
)
"src/unix/lwt_log.ml" 215 7901 7915 "src/unix/lwt_log.ml" 215 7901 7955
call(
  stack
)
type(
  unit
)
"src/unix/lwt_log.ml" 216 7957 7971 "src/unix/lwt_log.ml" 216 7957 7975
type(
  string list -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  int_ref loop "src/unix/lwt_log.ml" 165 5606 5616 "src/unix/lwt_log.ml" 165 5606 5620
)
"src/unix/lwt_log.ml" 216 7957 7976 "src/unix/lwt_log.ml" 216 7957 7981
type(
  string list
)
ident(
  int_ref paths "src/unix/lwt_log.ml" 171 5892 5906 "src/unix/lwt_log.ml" 171 5892 5911
)
"src/unix/lwt_log.ml" 216 7957 7971 "src/unix/lwt_log.ml" 216 7957 7981
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 215 7901 7915 "src/unix/lwt_log.ml" 216 7957 7981
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 180 6242 6258 "src/unix/lwt_log.ml" 216 7957 7982
type(
  Unix.file_kind option ->
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 172 5915 5923 "src/unix/lwt_log.ml" 216 7957 8004
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 165 5606 5623 "src/unix/lwt_log.ml" 216 7957 8004
type(
  string list -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 218 8010 8012 "src/unix/lwt_log.ml" 218 8010 8016
type(
  string list -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  int_ref loop "src/unix/lwt_log.ml" 165 5606 5616 "src/unix/lwt_log.ml" 165 5606 5620
)
"src/unix/lwt_log.ml" 218 8010 8017 "src/unix/lwt_log.ml" 218 8010 8022
type(
  string list
)
ident(
  int_ref paths "src/unix/lwt_log.ml" 164 5579 5598 "src/unix/lwt_log.ml" 164 5579 5603
)
"src/unix/lwt_log.ml" 218 8010 8012 "src/unix/lwt_log.ml" 218 8010 8022
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 165 5606 5608 "src/unix/lwt_log.ml" 218 8010 8022
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 222 8100 8104 "src/unix/lwt_log.ml" 222 8100 8116
type(
  Lwt_unix.file_descr -> string -> unit Lwt.t
)
ident(
  def write_string "src/unix/lwt_log.ml" 236 8418 8418 "src/unix/lwt_log.ml" 1 0 -1
)
"src/unix/lwt_log.ml" 222 8100 8117 "src/unix/lwt_log.ml" 222 8100 8119
type(
  Lwt_unix.file_descr
)
ident(
  def fd "src/unix/lwt_log.ml" 222 8100 8120 "src/unix/lwt_log.ml" 234 8409 8416
)
"src/unix/lwt_log.ml" 222 8100 8120 "src/unix/lwt_log.ml" 222 8100 8123
type(
  string
)
ident(
  def str "src/unix/lwt_log.ml" 223 8126 8128 "src/unix/lwt_log.ml" 234 8409 8416
)
"src/unix/lwt_log.ml" 223 8126 8132 "src/unix/lwt_log.ml" 223 8126 8135
type(
  int
)
ident(
  def len "src/unix/lwt_log.ml" 224 8159 8161 "src/unix/lwt_log.ml" 234 8409 8416
)
"src/unix/lwt_log.ml" 223 8126 8138 "src/unix/lwt_log.ml" 223 8126 8151
type(
  string -> int
)
ident(
  ext_ref String.length
)
"src/unix/lwt_log.ml" 223 8126 8152 "src/unix/lwt_log.ml" 223 8126 8155
type(
  string
)
ident(
  int_ref str "src/unix/lwt_log.ml" 222 8100 8120 "src/unix/lwt_log.ml" 222 8100 8123
)
"src/unix/lwt_log.ml" 223 8126 8138 "src/unix/lwt_log.ml" 223 8126 8155
type(
  int
)
"src/unix/lwt_log.ml" 224 8159 8169 "src/unix/lwt_log.ml" 224 8159 8172
type(
  int -> unit Lwt.t
)
ident(
  def aux "src/unix/lwt_log.ml" 224 8159 8161 "src/unix/lwt_log.ml" 234 8409 8416
)
"src/unix/lwt_log.ml" 224 8159 8173 "src/unix/lwt_log.ml" 224 8159 8182
type(
  int
)
ident(
  def start_ofs "src/unix/lwt_log.ml" 225 8185 8189 "src/unix/lwt_log.ml" 232 8380 8403
)
"src/unix/lwt_log.ml" 225 8185 8192 "src/unix/lwt_log.ml" 225 8185 8201
type(
  int
)
ident(
  int_ref start_ofs "src/unix/lwt_log.ml" 224 8159 8173 "src/unix/lwt_log.ml" 224 8159 8182
)
"src/unix/lwt_log.ml" 225 8185 8202 "src/unix/lwt_log.ml" 225 8185 8203
type(
  int -> int -> bool
)
ident(
  ext_ref Pervasives.( = )
)
"src/unix/lwt_log.ml" 225 8185 8204 "src/unix/lwt_log.ml" 225 8185 8207
type(
  int
)
ident(
  int_ref len "src/unix/lwt_log.ml" 223 8126 8132 "src/unix/lwt_log.ml" 223 8126 8135
)
"src/unix/lwt_log.ml" 225 8185 8192 "src/unix/lwt_log.ml" 225 8185 8207
type(
  bool
)
"src/unix/lwt_log.ml" 226 8213 8219 "src/unix/lwt_log.ml" 226 8213 8234
type(
  unit Lwt.t
)
ident(
  ext_ref Lwt.return_unit
)
"src/unix/lwt_log.ml" 228 8244 8250 "src/unix/lwt_log.ml" 228 8244 8271
type(
  Lwt_unix.file_descr -> string -> int -> int -> int Lwt.t
)
ident(
  ext_ref Lwt_unix.write_string
)
"src/unix/lwt_log.ml" 228 8244 8272 "src/unix/lwt_log.ml" 228 8244 8274
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 222 8100 8117 "src/unix/lwt_log.ml" 222 8100 8119
)
"src/unix/lwt_log.ml" 228 8244 8275 "src/unix/lwt_log.ml" 228 8244 8278
type(
  string
)
ident(
  int_ref str "src/unix/lwt_log.ml" 222 8100 8120 "src/unix/lwt_log.ml" 222 8100 8123
)
"src/unix/lwt_log.ml" 228 8244 8279 "src/unix/lwt_log.ml" 228 8244 8288
type(
  int
)
ident(
  int_ref start_ofs "src/unix/lwt_log.ml" 224 8159 8173 "src/unix/lwt_log.ml" 224 8159 8182
)
"src/unix/lwt_log.ml" 228 8244 8290 "src/unix/lwt_log.ml" 228 8244 8293
type(
  int
)
ident(
  int_ref len "src/unix/lwt_log.ml" 223 8126 8132 "src/unix/lwt_log.ml" 223 8126 8135
)
"src/unix/lwt_log.ml" 228 8244 8294 "src/unix/lwt_log.ml" 228 8244 8295
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"src/unix/lwt_log.ml" 228 8244 8296 "src/unix/lwt_log.ml" 228 8244 8305
type(
  int
)
ident(
  int_ref start_ofs "src/unix/lwt_log.ml" 224 8159 8173 "src/unix/lwt_log.ml" 224 8159 8182
)
"src/unix/lwt_log.ml" 228 8244 8289 "src/unix/lwt_log.ml" 228 8244 8306
type(
  int
)
"src/unix/lwt_log.ml" 228 8244 8250 "src/unix/lwt_log.ml" 228 8244 8306
call(
  stack
)
type(
  int Lwt.t
)
"src/unix/lwt_log.ml" 228 8244 8307 "src/unix/lwt_log.ml" 228 8244 8310
type(
  int Lwt.t -> (int -> unit Lwt.t) -> unit Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/unix/lwt_log.ml" 228 8244 8315 "src/unix/lwt_log.ml" 228 8244 8316
type(
  int
)
ident(
  def n "src/unix/lwt_log.ml" 229 8320 8326 "src/unix/lwt_log.ml" 232 8380 8403
)
"src/unix/lwt_log.ml" 229 8320 8329 "src/unix/lwt_log.ml" 229 8320 8330
type(
  int
)
ident(
  int_ref n "src/unix/lwt_log.ml" 228 8244 8315 "src/unix/lwt_log.ml" 228 8244 8316
)
"src/unix/lwt_log.ml" 229 8320 8331 "src/unix/lwt_log.ml" 229 8320 8333
type(
  int -> int -> bool
)
ident(
  ext_ref Pervasives.( <> )
)
"src/unix/lwt_log.ml" 229 8320 8334 "src/unix/lwt_log.ml" 229 8320 8335
type(
  int
)
"src/unix/lwt_log.ml" 229 8320 8329 "src/unix/lwt_log.ml" 229 8320 8335
type(
  bool
)
"src/unix/lwt_log.ml" 230 8341 8349 "src/unix/lwt_log.ml" 230 8341 8352
type(
  int -> unit Lwt.t
)
ident(
  int_ref aux "src/unix/lwt_log.ml" 224 8159 8169 "src/unix/lwt_log.ml" 224 8159 8172
)
"src/unix/lwt_log.ml" 230 8341 8354 "src/unix/lwt_log.ml" 230 8341 8363
type(
  int
)
ident(
  int_ref start_ofs "src/unix/lwt_log.ml" 224 8159 8173 "src/unix/lwt_log.ml" 224 8159 8182
)
"src/unix/lwt_log.ml" 230 8341 8364 "src/unix/lwt_log.ml" 230 8341 8365
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( + )
)
"src/unix/lwt_log.ml" 230 8341 8366 "src/unix/lwt_log.ml" 230 8341 8367
type(
  int
)
ident(
  int_ref n "src/unix/lwt_log.ml" 228 8244 8315 "src/unix/lwt_log.ml" 228 8244 8316
)
"src/unix/lwt_log.ml" 230 8341 8353 "src/unix/lwt_log.ml" 230 8341 8368
type(
  int
)
"src/unix/lwt_log.ml" 230 8341 8349 "src/unix/lwt_log.ml" 230 8341 8368
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 232 8380 8388 "src/unix/lwt_log.ml" 232 8380 8403
type(
  unit Lwt.t
)
ident(
  ext_ref Lwt.return_unit
)
"src/unix/lwt_log.ml" 229 8320 8326 "src/unix/lwt_log.ml" 232 8380 8403
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 228 8244 8311 "src/unix/lwt_log.ml" 232 8380 8403
type(
  int -> unit Lwt.t
)
"src/unix/lwt_log.ml" 228 8244 8250 "src/unix/lwt_log.ml" 232 8380 8403
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 225 8185 8189 "src/unix/lwt_log.ml" 232 8380 8403
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 234 8409 8411 "src/unix/lwt_log.ml" 234 8409 8414
type(
  int -> unit Lwt.t
)
ident(
  int_ref aux "src/unix/lwt_log.ml" 224 8159 8169 "src/unix/lwt_log.ml" 224 8159 8172
)
"src/unix/lwt_log.ml" 234 8409 8415 "src/unix/lwt_log.ml" 234 8409 8416
type(
  int
)
"src/unix/lwt_log.ml" 234 8409 8411 "src/unix/lwt_log.ml" 234 8409 8416
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 224 8159 8161 "src/unix/lwt_log.ml" 234 8409 8416
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 223 8126 8128 "src/unix/lwt_log.ml" 234 8409 8416
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 236 8418 8422 "src/unix/lwt_log.ml" 236 8418 8430
type(
  Buffer.t -> int -> string
)
ident(
  def truncate "src/unix/lwt_log.ml" 244 8645 8645 "src/unix/lwt_log.ml" 1 0 -1
)
"src/unix/lwt_log.ml" 236 8418 8431 "src/unix/lwt_log.ml" 236 8418 8434
type(
  Buffer.t
)
ident(
  def buf "src/unix/lwt_log.ml" 236 8418 8435 "src/unix/lwt_log.ml" 242 8620 8643
)
"src/unix/lwt_log.ml" 236 8418 8435 "src/unix/lwt_log.ml" 236 8418 8438
type(
  int
)
ident(
  def max "src/unix/lwt_log.ml" 237 8441 8443 "src/unix/lwt_log.ml" 242 8620 8643
)
"src/unix/lwt_log.ml" 237 8441 8446 "src/unix/lwt_log.ml" 237 8441 8459
type(
  Buffer.t -> int
)
ident(
  ext_ref Buffer.length
)
"src/unix/lwt_log.ml" 237 8441 8460 "src/unix/lwt_log.ml" 237 8441 8463
type(
  Buffer.t
)
ident(
  int_ref buf "src/unix/lwt_log.ml" 236 8418 8431 "src/unix/lwt_log.ml" 236 8418 8434
)
"src/unix/lwt_log.ml" 237 8441 8446 "src/unix/lwt_log.ml" 237 8441 8463
call(
  stack
)
type(
  int
)
"src/unix/lwt_log.ml" 237 8441 8464 "src/unix/lwt_log.ml" 237 8441 8465
type(
  int -> int -> bool
)
ident(
  ext_ref Pervasives.( > )
)
"src/unix/lwt_log.ml" 237 8441 8466 "src/unix/lwt_log.ml" 237 8441 8469
type(
  int
)
ident(
  int_ref max "src/unix/lwt_log.ml" 236 8418 8435 "src/unix/lwt_log.ml" 236 8418 8438
)
"src/unix/lwt_log.ml" 237 8441 8446 "src/unix/lwt_log.ml" 237 8441 8469
type(
  bool
)
"src/unix/lwt_log.ml" 238 8481 8489 "src/unix/lwt_log.ml" 238 8481 8495
type(
  string
)
ident(
  def suffix "src/unix/lwt_log.ml" 239 8515 8519 "src/unix/lwt_log.ml" 240 8560 8608
)
"src/unix/lwt_log.ml" 238 8481 8498 "src/unix/lwt_log.ml" 238 8481 8511
type(
  string
)
"src/unix/lwt_log.ml" 239 8515 8523 "src/unix/lwt_log.ml" 239 8515 8533
type(
  int
)
ident(
  def len_suffix "src/unix/lwt_log.ml" 240 8560 8564 "src/unix/lwt_log.ml" 240 8560 8608
)
"src/unix/lwt_log.ml" 239 8515 8536 "src/unix/lwt_log.ml" 239 8515 8549
type(
  string -> int
)
ident(
  ext_ref String.length
)
"src/unix/lwt_log.ml" 239 8515 8550 "src/unix/lwt_log.ml" 239 8515 8556
type(
  string
)
ident(
  int_ref suffix "src/unix/lwt_log.ml" 238 8481 8489 "src/unix/lwt_log.ml" 238 8481 8495
)
"src/unix/lwt_log.ml" 239 8515 8536 "src/unix/lwt_log.ml" 239 8515 8556
type(
  int
)
"src/unix/lwt_log.ml" 240 8560 8564 "src/unix/lwt_log.ml" 240 8560 8574
type(
  Buffer.t -> int -> int -> string
)
ident(
  ext_ref Buffer.sub
)
"src/unix/lwt_log.ml" 240 8560 8575 "src/unix/lwt_log.ml" 240 8560 8578
type(
  Buffer.t
)
ident(
  int_ref buf "src/unix/lwt_log.ml" 236 8418 8431 "src/unix/lwt_log.ml" 236 8418 8434
)
"src/unix/lwt_log.ml" 240 8560 8579 "src/unix/lwt_log.ml" 240 8560 8580
type(
  int
)
"src/unix/lwt_log.ml" 240 8560 8582 "src/unix/lwt_log.ml" 240 8560 8585
type(
  int
)
ident(
  int_ref max "src/unix/lwt_log.ml" 236 8418 8435 "src/unix/lwt_log.ml" 236 8418 8438
)
"src/unix/lwt_log.ml" 240 8560 8586 "src/unix/lwt_log.ml" 240 8560 8587
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"src/unix/lwt_log.ml" 240 8560 8588 "src/unix/lwt_log.ml" 240 8560 8598
type(
  int
)
ident(
  int_ref len_suffix "src/unix/lwt_log.ml" 239 8515 8523 "src/unix/lwt_log.ml" 239 8515 8533
)
"src/unix/lwt_log.ml" 240 8560 8581 "src/unix/lwt_log.ml" 240 8560 8599
type(
  int
)
"src/unix/lwt_log.ml" 240 8560 8564 "src/unix/lwt_log.ml" 240 8560 8599
call(
  stack
)
type(
  string
)
"src/unix/lwt_log.ml" 240 8560 8600 "src/unix/lwt_log.ml" 240 8560 8601
type(
  string -> string -> string
)
ident(
  ext_ref Pervasives.( ^ )
)
"src/unix/lwt_log.ml" 240 8560 8602 "src/unix/lwt_log.ml" 240 8560 8608
type(
  string
)
ident(
  int_ref suffix "src/unix/lwt_log.ml" 238 8481 8489 "src/unix/lwt_log.ml" 238 8481 8495
)
"src/unix/lwt_log.ml" 240 8560 8564 "src/unix/lwt_log.ml" 240 8560 8608
call(
  tail
)
type(
  string
)
"src/unix/lwt_log.ml" 239 8515 8519 "src/unix/lwt_log.ml" 240 8560 8608
type(
  string
)
"src/unix/lwt_log.ml" 237 8441 8475 "src/unix/lwt_log.ml" 241 8609 8614
type(
  string
)
"src/unix/lwt_log.ml" 242 8620 8624 "src/unix/lwt_log.ml" 242 8620 8639
type(
  Buffer.t -> string
)
ident(
  ext_ref Buffer.contents
)
"src/unix/lwt_log.ml" 242 8620 8640 "src/unix/lwt_log.ml" 242 8620 8643
type(
  Buffer.t
)
ident(
  int_ref buf "src/unix/lwt_log.ml" 236 8418 8431 "src/unix/lwt_log.ml" 236 8418 8434
)
"src/unix/lwt_log.ml" 242 8620 8624 "src/unix/lwt_log.ml" 242 8620 8643
call(
  tail
)
type(
  string
)
"src/unix/lwt_log.ml" 237 8441 8443 "src/unix/lwt_log.ml" 242 8620 8643
type(
  string
)
"src/unix/lwt_log.ml" 244 8645 8649 "src/unix/lwt_log.ml" 244 8645 8655
type(
  ?template:string ->
  ?paths:string list ->
  facility:[< `Auth
            | `Authpriv
            | `Console
            | `Cron
            | `Daemon
            | `FTP
            | `Kernel
            | `LPR
            | `Local0
            | `Local1
            | `Local2
            | `Local3
            | `Local4
            | `Local5
            | `Local6
            | `Local7
            | `Mail
            | `NTP
            | `News
            | `Security
            | `Syslog
            | `UUCP
            | `User ] ->
  unit -> logger
)
ident(
  def syslog "src/unix/lwt_log.ml" 291 10878 10910 "src/unix/lwt_log.ml" 1 0 -1
)
"src/unix/lwt_log.ml" 244 8645 8658 "src/unix/lwt_log.ml" 244 8645 8666
type(
  string
)
"src/unix/lwt_log.ml" 244 8645 8667 "src/unix/lwt_log.ml" 244 8645 8716
type(
  string
)
type(
  string
)
ident(
  int_ref *sth* "src/unix/lwt_log.ml" 244 8645 8667 "src/unix/lwt_log.ml" 244 8645 8716
)
type(
  string option
)
type(
  string option
)
type(
  string
)
"src/unix/lwt_log.ml" 244 8645 8720 "src/unix/lwt_log.ml" 244 8645 8725
type(
  string list
)
"src/unix/lwt_log.ml" 244 8645 8727 "src/unix/lwt_log.ml" 244 8645 8737
type(
  string
)
"src/unix/lwt_log.ml" 244 8645 8739 "src/unix/lwt_log.ml" 244 8645 8753
type(
  string
)
"src/unix/lwt_log.ml" 244 8645 8755 "src/unix/lwt_log.ml" 244 8645 8772
type(
  string
)
"src/unix/lwt_log.ml" 244 8645 8726 "src/unix/lwt_log.ml" 244 8645 8773
type(
  string list
)
type(
  string list
)
ident(
  int_ref *sth* "src/unix/lwt_log.ml" 244 8645 8726 "src/unix/lwt_log.ml" 244 8645 8773
)
type(
  string list option
)
type(
  string list option
)
type(
  string list
)
"src/unix/lwt_log.ml" 244 8645 8776 "src/unix/lwt_log.ml" 244 8645 8784
type(
  [< `Auth
   | `Authpriv
   | `Console
   | `Cron
   | `Daemon
   | `FTP
   | `Kernel
   | `LPR
   | `Local0
   | `Local1
   | `Local2
   | `Local3
   | `Local4
   | `Local5
   | `Local6
   | `Local7
   | `Mail
   | `NTP
   | `News
   | `Security
   | `Syslog
   | `UUCP
   | `User ]
  as 'a
)
ident(
  def facility "src/unix/lwt_log.ml" 244 8645 8785 "src/unix/lwt_log.ml" 291 10878 10910
)
"src/unix/lwt_log.ml" 244 8645 8785 "src/unix/lwt_log.ml" 244 8645 8787
type(
  unit
)
"src/unix/lwt_log.ml" 245 8790 8796 "src/unix/lwt_log.ml" 245 8790 8809
type(
  (syslog_connection_type * Lwt_unix.file_descr) option ref
)
ident(
  def syslog_socket "src/unix/lwt_log.ml" 246 8856 8858 "src/unix/lwt_log.ml" 291 10878 10910
)
"src/unix/lwt_log.ml" 245 8790 8812 "src/unix/lwt_log.ml" 245 8790 8815
type(
  (syslog_connection_type * Lwt_unix.file_descr) option ->
  (syslog_connection_type * Lwt_unix.file_descr) option ref
)
ident(
  ext_ref Pervasives.ref
)
"src/unix/lwt_log.ml" 245 8790 8816 "src/unix/lwt_log.ml" 245 8790 8820
type(
  (syslog_connection_type * Lwt_unix.file_descr) option
)
"src/unix/lwt_log.ml" 245 8790 8812 "src/unix/lwt_log.ml" 245 8790 8820
type(
  (syslog_connection_type * Lwt_unix.file_descr) option ref
)
"src/unix/lwt_log.ml" 245 8790 8825 "src/unix/lwt_log.ml" 245 8790 8830
type(
  Lwt_mutex.t
)
ident(
  def mutex "src/unix/lwt_log.ml" 246 8856 8858 "src/unix/lwt_log.ml" 291 10878 10910
)
"src/unix/lwt_log.ml" 245 8790 8833 "src/unix/lwt_log.ml" 245 8790 8849
type(
  unit -> Lwt_mutex.t
)
ident(
  ext_ref Lwt_mutex.create
)
"src/unix/lwt_log.ml" 245 8790 8850 "src/unix/lwt_log.ml" 245 8790 8852
type(
  unit
)
"src/unix/lwt_log.ml" 245 8790 8833 "src/unix/lwt_log.ml" 245 8790 8852
call(
  stack
)
type(
  Lwt_mutex.t
)
"src/unix/lwt_log.ml" 246 8856 8862 "src/unix/lwt_log.ml" 246 8856 8872
type(
  unit -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  def get_syslog "src/unix/lwt_log.ml" 254 9056 9058 "src/unix/lwt_log.ml" 291 10878 10910
)
"src/unix/lwt_log.ml" 246 8856 8873 "src/unix/lwt_log.ml" 246 8856 8875
type(
  unit
)
"src/unix/lwt_log.ml" 246 8856 8884 "src/unix/lwt_log.ml" 246 8856 8885
type(
  (syslog_connection_type * Lwt_unix.file_descr) option ref ->
  (syslog_connection_type * Lwt_unix.file_descr) option
)
ident(
  ext_ref Pervasives.( ! )
)
"src/unix/lwt_log.ml" 246 8856 8885 "src/unix/lwt_log.ml" 246 8856 8898
type(
  (syslog_connection_type * Lwt_unix.file_descr) option ref
)
ident(
  int_ref syslog_socket "src/unix/lwt_log.ml" 245 8790 8796 "src/unix/lwt_log.ml" 245 8790 8809
)
"src/unix/lwt_log.ml" 246 8856 8884 "src/unix/lwt_log.ml" 246 8856 8898
type(
  (syslog_connection_type * Lwt_unix.file_descr) option
)
"src/unix/lwt_log.ml" 247 8904 8915 "src/unix/lwt_log.ml" 247 8904 8916
type(
  syslog_connection_type * Lwt_unix.file_descr
)
ident(
  def x "src/unix/lwt_log.ml" 248 8920 8928 "src/unix/lwt_log.ml" 248 8920 8940
)
"src/unix/lwt_log.ml" 247 8904 8910 "src/unix/lwt_log.ml" 247 8904 8916
type(
  (syslog_connection_type * Lwt_unix.file_descr) option
)
"src/unix/lwt_log.ml" 248 8920 8928 "src/unix/lwt_log.ml" 248 8920 8938
type(
  syslog_connection_type * Lwt_unix.file_descr ->
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  ext_ref Lwt.return
)
"src/unix/lwt_log.ml" 248 8920 8939 "src/unix/lwt_log.ml" 248 8920 8940
type(
  syslog_connection_type * Lwt_unix.file_descr
)
ident(
  int_ref x "src/unix/lwt_log.ml" 247 8904 8915 "src/unix/lwt_log.ml" 247 8904 8916
)
"src/unix/lwt_log.ml" 248 8920 8928 "src/unix/lwt_log.ml" 248 8920 8940
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 249 8941 8947 "src/unix/lwt_log.ml" 249 8941 8951
type(
  (syslog_connection_type * Lwt_unix.file_descr) option
)
"src/unix/lwt_log.ml" 250 8955 8963 "src/unix/lwt_log.ml" 250 8955 8977
type(
  string list -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  int_ref syslog_connect "src/unix/lwt_log.ml" 164 5579 5583 "src/unix/lwt_log.ml" 164 5579 5597
)
"src/unix/lwt_log.ml" 250 8955 8978 "src/unix/lwt_log.ml" 250 8955 8983
type(
  string list
)
ident(
  int_ref paths "src/unix/lwt_log.ml" 244 8645 8720 "src/unix/lwt_log.ml" 244 8645 8725
)
"src/unix/lwt_log.ml" 250 8955 8963 "src/unix/lwt_log.ml" 250 8955 8983
call(
  stack
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 250 8955 8984 "src/unix/lwt_log.ml" 250 8955 8987
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t ->
  (syslog_connection_type * Lwt_unix.file_descr ->
   (syslog_connection_type * Lwt_unix.file_descr) Lwt.t) ->
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/unix/lwt_log.ml" 250 8955 8992 "src/unix/lwt_log.ml" 250 8955 8993
type(
  syslog_connection_type * Lwt_unix.file_descr
)
ident(
  def x "src/unix/lwt_log.ml" 251 8997 9005 "src/unix/lwt_log.ml" 252 9030 9050
)
"src/unix/lwt_log.ml" 251 8997 9005 "src/unix/lwt_log.ml" 251 8997 9018
type(
  (syslog_connection_type * Lwt_unix.file_descr) option ref
)
ident(
  int_ref syslog_socket "src/unix/lwt_log.ml" 245 8790 8796 "src/unix/lwt_log.ml" 245 8790 8809
)
"src/unix/lwt_log.ml" 251 8997 9019 "src/unix/lwt_log.ml" 251 8997 9021
type(
  (syslog_connection_type * Lwt_unix.file_descr) option ref ->
  (syslog_connection_type * Lwt_unix.file_descr) option -> unit
)
ident(
  ext_ref Pervasives.( := )
)
"src/unix/lwt_log.ml" 251 8997 9027 "src/unix/lwt_log.ml" 251 8997 9028
type(
  syslog_connection_type * Lwt_unix.file_descr
)
ident(
  int_ref x "src/unix/lwt_log.ml" 250 8955 8992 "src/unix/lwt_log.ml" 250 8955 8993
)
"src/unix/lwt_log.ml" 251 8997 9022 "src/unix/lwt_log.ml" 251 8997 9028
type(
  (syslog_connection_type * Lwt_unix.file_descr) option
)
"src/unix/lwt_log.ml" 251 8997 9005 "src/unix/lwt_log.ml" 251 8997 9028
type(
  unit
)
"src/unix/lwt_log.ml" 252 9030 9038 "src/unix/lwt_log.ml" 252 9030 9048
type(
  syslog_connection_type * Lwt_unix.file_descr ->
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  ext_ref Lwt.return
)
"src/unix/lwt_log.ml" 252 9030 9049 "src/unix/lwt_log.ml" 252 9030 9050
type(
  syslog_connection_type * Lwt_unix.file_descr
)
ident(
  int_ref x "src/unix/lwt_log.ml" 250 8955 8992 "src/unix/lwt_log.ml" 250 8955 8993
)
"src/unix/lwt_log.ml" 252 9030 9038 "src/unix/lwt_log.ml" 252 9030 9050
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 251 8997 9005 "src/unix/lwt_log.ml" 252 9030 9050
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 250 8955 8988 "src/unix/lwt_log.ml" 252 9030 9050
type(
  syslog_connection_type * Lwt_unix.file_descr ->
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 250 8955 8963 "src/unix/lwt_log.ml" 252 9030 9050
call(
  tail
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 246 8856 8878 "src/unix/lwt_log.ml" 252 9030 9050
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 254 9056 9058 "src/unix/lwt_log.ml" 254 9056 9062
type(
  output:(section -> level -> string list -> unit Lwt.t) ->
  close:(unit -> unit Lwt.t) -> logger
)
ident(
  ext_ref make
)
"src/unix/lwt_log.ml" 255 9063 9080 "src/unix/lwt_log.ml" 255 9063 9087
type(
  section
)
ident(
  def section "src/unix/lwt_log.ml" 255 9063 9088 "src/unix/lwt_log.ml" 285 10661 10708
)
"src/unix/lwt_log.ml" 255 9063 9088 "src/unix/lwt_log.ml" 255 9063 9093
type(
  level
)
ident(
  def level "src/unix/lwt_log.ml" 255 9063 9094 "src/unix/lwt_log.ml" 285 10661 10708
)
"src/unix/lwt_log.ml" 255 9063 9094 "src/unix/lwt_log.ml" 255 9063 9099
type(
  string list
)
ident(
  def lines "src/unix/lwt_log.ml" 256 9103 9118 "src/unix/lwt_log.ml" 285 10661 10708
)
"src/unix/lwt_log.ml" 256 9103 9118 "src/unix/lwt_log.ml" 256 9103 9137
type(
  Lwt_mutex.t -> (unit -> unit Lwt.t) -> unit Lwt.t
)
ident(
  ext_ref Lwt_mutex.with_lock
)
"src/unix/lwt_log.ml" 256 9103 9138 "src/unix/lwt_log.ml" 256 9103 9143
type(
  Lwt_mutex.t
)
ident(
  int_ref mutex "src/unix/lwt_log.ml" 245 8790 8825 "src/unix/lwt_log.ml" 245 8790 8830
)
"src/unix/lwt_log.ml" 257 9144 9166 "src/unix/lwt_log.ml" 257 9144 9168
type(
  unit
)
"src/unix/lwt_log.ml" 258 9172 9196 "src/unix/lwt_log.ml" 258 9172 9199
type(
  Buffer.t
)
ident(
  def buf "src/unix/lwt_log.ml" 259 9222 9242 "src/unix/lwt_log.ml" 285 10661 10707
)
"src/unix/lwt_log.ml" 258 9172 9202 "src/unix/lwt_log.ml" 258 9172 9215
type(
  int -> Buffer.t
)
ident(
  ext_ref Buffer.create
)
"src/unix/lwt_log.ml" 258 9172 9216 "src/unix/lwt_log.ml" 258 9172 9218
type(
  int
)
"src/unix/lwt_log.ml" 258 9172 9202 "src/unix/lwt_log.ml" 258 9172 9218
call(
  stack
)
type(
  Buffer.t
)
"src/unix/lwt_log.ml" 259 9222 9246 "src/unix/lwt_log.ml" 259 9222 9255
type(
  syslog_connection_type -> string -> string
)
ident(
  def make_line "src/unix/lwt_log.ml" 266 9640 9660 "src/unix/lwt_log.ml" 285 10661 10707
)
"src/unix/lwt_log.ml" 259 9222 9256 "src/unix/lwt_log.ml" 259 9222 9267
type(
  syslog_connection_type
)
ident(
  def socket_type "src/unix/lwt_log.ml" 259 9222 9268 "src/unix/lwt_log.ml" 264 9577 9616
)
"src/unix/lwt_log.ml" 259 9222 9268 "src/unix/lwt_log.ml" 259 9222 9271
type(
  string
)
ident(
  def msg "src/unix/lwt_log.ml" 260 9274 9296 "src/unix/lwt_log.ml" 264 9577 9616
)
"src/unix/lwt_log.ml" 260 9274 9296 "src/unix/lwt_log.ml" 260 9274 9308
type(
  Buffer.t -> unit
)
ident(
  ext_ref Buffer.clear
)
"src/unix/lwt_log.ml" 260 9274 9309 "src/unix/lwt_log.ml" 260 9274 9312
type(
  Buffer.t
)
ident(
  int_ref buf "src/unix/lwt_log.ml" 258 9172 9196 "src/unix/lwt_log.ml" 258 9172 9199
)
"src/unix/lwt_log.ml" 260 9274 9296 "src/unix/lwt_log.ml" 260 9274 9312
call(
  stack
)
type(
  unit
)
"src/unix/lwt_log.ml" 261 9314 9336 "src/unix/lwt_log.ml" 261 9314 9350
type(
  Buffer.t -> (int -> unit, Buffer.t, unit) format -> int -> unit
)
ident(
  ext_ref Printf.bprintf
)
"src/unix/lwt_log.ml" 261 9314 9351 "src/unix/lwt_log.ml" 261 9314 9354
type(
  Buffer.t
)
ident(
  int_ref buf "src/unix/lwt_log.ml" 258 9172 9196 "src/unix/lwt_log.ml" 258 9172 9199
)
"src/unix/lwt_log.ml" 261 9314 9355 "src/unix/lwt_log.ml" 261 9314 9361
type(
  (int -> unit, Buffer.t, unit) format
)
"src/unix/lwt_log.ml" 261 9314 9364 "src/unix/lwt_log.ml" 261 9314 9377
type(
  'a -> int
)
ident(
  int_ref facility_code "src/unix/lwt_log.ml" 130 4873 4877 "src/unix/lwt_log.ml" 130 4873 4890
)
"src/unix/lwt_log.ml" 261 9314 9378 "src/unix/lwt_log.ml" 261 9314 9386
type(
  'a
)
ident(
  int_ref facility "src/unix/lwt_log.ml" 244 8645 8776 "src/unix/lwt_log.ml" 244 8645 8784
)
"src/unix/lwt_log.ml" 261 9314 9364 "src/unix/lwt_log.ml" 261 9314 9386
call(
  stack
)
type(
  int
)
"src/unix/lwt_log.ml" 261 9314 9387 "src/unix/lwt_log.ml" 261 9314 9390
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( lsl )
)
"src/unix/lwt_log.ml" 261 9314 9391 "src/unix/lwt_log.ml" 261 9314 9392
type(
  int
)
"src/unix/lwt_log.ml" 261 9314 9363 "src/unix/lwt_log.ml" 261 9314 9393
type(
  int
)
"src/unix/lwt_log.ml" 261 9314 9394 "src/unix/lwt_log.ml" 261 9314 9397
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( lor )
)
"src/unix/lwt_log.ml" 261 9314 9398 "src/unix/lwt_log.ml" 261 9314 9408
type(
  level -> int
)
ident(
  int_ref level_code "src/unix/lwt_log.ml" 117 4502 4506 "src/unix/lwt_log.ml" 117 4502 4516
)
"src/unix/lwt_log.ml" 261 9314 9409 "src/unix/lwt_log.ml" 261 9314 9414
type(
  level
)
ident(
  int_ref level "src/unix/lwt_log.ml" 255 9063 9088 "src/unix/lwt_log.ml" 255 9063 9093
)
"src/unix/lwt_log.ml" 261 9314 9398 "src/unix/lwt_log.ml" 261 9314 9414
call(
  stack
)
type(
  int
)
"src/unix/lwt_log.ml" 261 9314 9362 "src/unix/lwt_log.ml" 261 9314 9415
type(
  int
)
"src/unix/lwt_log.ml" 261 9314 9336 "src/unix/lwt_log.ml" 261 9314 9415
call(
  stack
)
type(
  unit
)
"src/unix/lwt_log.ml" 262 9417 9439 "src/unix/lwt_log.ml" 262 9417 9445
type(
  buffer:Buffer.t ->
  template:string -> section:section -> level:level -> message:string -> unit
)
ident(
  int_ref render "src/unix/lwt_log.ml" 60 2083 2087 "src/unix/lwt_log.ml" 60 2083 2093
)
"src/unix/lwt_log.ml" 262 9417 9454 "src/unix/lwt_log.ml" 262 9417 9457
type(
  Buffer.t
)
ident(
  int_ref buf "src/unix/lwt_log.ml" 258 9172 9196 "src/unix/lwt_log.ml" 258 9172 9199
)
"src/unix/lwt_log.ml" 262 9417 9459 "src/unix/lwt_log.ml" 262 9417 9467
type(
  string
)
ident(
  int_ref template "src/unix/lwt_log.ml" 244 8645 8658 "src/unix/lwt_log.ml" 244 8645 8666
)
"src/unix/lwt_log.ml" 262 9417 9469 "src/unix/lwt_log.ml" 262 9417 9476
type(
  section
)
ident(
  int_ref section "src/unix/lwt_log.ml" 255 9063 9080 "src/unix/lwt_log.ml" 255 9063 9087
)
"src/unix/lwt_log.ml" 262 9417 9478 "src/unix/lwt_log.ml" 262 9417 9483
type(
  level
)
ident(
  int_ref level "src/unix/lwt_log.ml" 255 9063 9088 "src/unix/lwt_log.ml" 255 9063 9093
)
"src/unix/lwt_log.ml" 262 9417 9493 "src/unix/lwt_log.ml" 262 9417 9496
type(
  string
)
ident(
  int_ref msg "src/unix/lwt_log.ml" 259 9222 9268 "src/unix/lwt_log.ml" 259 9222 9271
)
"src/unix/lwt_log.ml" 262 9417 9439 "src/unix/lwt_log.ml" 262 9417 9496
call(
  stack
)
type(
  unit
)
"src/unix/lwt_log.ml" 263 9498 9523 "src/unix/lwt_log.ml" 263 9498 9534
type(
  syslog_connection_type
)
ident(
  int_ref socket_type "src/unix/lwt_log.ml" 259 9222 9256 "src/unix/lwt_log.ml" 259 9222 9267
)
"src/unix/lwt_log.ml" 263 9498 9535 "src/unix/lwt_log.ml" 263 9498 9536
type(
  syslog_connection_type -> syslog_connection_type -> bool
)
ident(
  ext_ref Pervasives.( = )
)
"src/unix/lwt_log.ml" 263 9498 9537 "src/unix/lwt_log.ml" 263 9498 9543
type(
  syslog_connection_type
)
"src/unix/lwt_log.ml" 263 9498 9523 "src/unix/lwt_log.ml" 263 9498 9543
type(
  bool
)
"src/unix/lwt_log.ml" 263 9498 9549 "src/unix/lwt_log.ml" 263 9498 9564
type(
  Buffer.t -> char -> unit
)
ident(
  ext_ref Buffer.add_char
)
"src/unix/lwt_log.ml" 263 9498 9565 "src/unix/lwt_log.ml" 263 9498 9568
type(
  Buffer.t
)
ident(
  int_ref buf "src/unix/lwt_log.ml" 258 9172 9196 "src/unix/lwt_log.ml" 258 9172 9199
)
"src/unix/lwt_log.ml" 263 9498 9569 "src/unix/lwt_log.ml" 263 9498 9575
type(
  char
)
"src/unix/lwt_log.ml" 263 9498 9549 "src/unix/lwt_log.ml" 263 9498 9575
call(
  stack
)
type(
  unit
)
"src/unix/lwt_log.ml" 263 9498 9520 "src/unix/lwt_log.ml" 263 9498 9575
type(
  unit
)
"src/unix/lwt_log.ml" 264 9577 9599 "src/unix/lwt_log.ml" 264 9577 9607
type(
  Buffer.t -> int -> string
)
ident(
  int_ref truncate "src/unix/lwt_log.ml" 236 8418 8422 "src/unix/lwt_log.ml" 236 8418 8430
)
"src/unix/lwt_log.ml" 264 9577 9608 "src/unix/lwt_log.ml" 264 9577 9611
type(
  Buffer.t
)
ident(
  int_ref buf "src/unix/lwt_log.ml" 258 9172 9196 "src/unix/lwt_log.ml" 258 9172 9199
)
"src/unix/lwt_log.ml" 264 9577 9612 "src/unix/lwt_log.ml" 264 9577 9616
type(
  int
)
"src/unix/lwt_log.ml" 264 9577 9599 "src/unix/lwt_log.ml" 264 9577 9616
call(
  tail
)
type(
  string
)
"src/unix/lwt_log.ml" 263 9498 9520 "src/unix/lwt_log.ml" 264 9577 9616
type(
  string
)
"src/unix/lwt_log.ml" 262 9417 9439 "src/unix/lwt_log.ml" 264 9577 9616
type(
  string
)
"src/unix/lwt_log.ml" 261 9314 9336 "src/unix/lwt_log.ml" 264 9577 9616
type(
  string
)
"src/unix/lwt_log.ml" 260 9274 9296 "src/unix/lwt_log.ml" 264 9577 9616
type(
  string
)
"src/unix/lwt_log.ml" 266 9640 9668 "src/unix/lwt_log.ml" 266 9640 9673
type(
  syslog_connection_type -> Lwt_unix.file_descr -> string list -> unit Lwt.t
)
ident(
  def print "src/unix/lwt_log.ml" 266 9640 9660 "src/unix/lwt_log.ml" 285 10661 10707
)
"src/unix/lwt_log.ml" 266 9640 9674 "src/unix/lwt_log.ml" 266 9640 9685
type(
  syslog_connection_type
)
ident(
  def socket_type "src/unix/lwt_log.ml" 266 9640 9686 "src/unix/lwt_log.ml" 282 10524 10574
)
"src/unix/lwt_log.ml" 266 9640 9686 "src/unix/lwt_log.ml" 266 9640 9688
type(
  Lwt_unix.file_descr
)
ident(
  def fd "src/unix/lwt_log.ml" 266 9640 9691 "src/unix/lwt_log.ml" 282 10524 10574
)
"src/unix/lwt_log.ml" 267 9700 9724 "src/unix/lwt_log.ml" 267 9700 9726
type(
  string list
)
"src/unix/lwt_log.ml" 268 9730 9756 "src/unix/lwt_log.ml" 268 9730 9771
type(
  unit Lwt.t
)
ident(
  ext_ref Lwt.return_unit
)
"src/unix/lwt_log.ml" 269 9772 9796 "src/unix/lwt_log.ml" 269 9772 9800
type(
  string
)
ident(
  def line "src/unix/lwt_log.ml" 270 9813 9839 "src/unix/lwt_log.ml" 282 10524 10574
)
"src/unix/lwt_log.ml" 269 9772 9804 "src/unix/lwt_log.ml" 269 9772 9809
type(
  string list
)
ident(
  def lines "src/unix/lwt_log.ml" 270 9813 9839 "src/unix/lwt_log.ml" 282 10524 10574
)
"src/unix/lwt_log.ml" 269 9772 9796 "src/unix/lwt_log.ml" 269 9772 9809
type(
  string list
)
"src/unix/lwt_log.ml" 270 9813 9839 "src/unix/lwt_log.ml" 270 9813 9848
type(
  (unit -> unit Lwt.t) -> (exn -> unit Lwt.t) -> unit Lwt.t
)
ident(
  ext_ref Lwt.catch
)
"src/unix/lwt_log.ml" 271 9849 9882 "src/unix/lwt_log.ml" 271 9849 9884
type(
  unit
)
"src/unix/lwt_log.ml" 272 9888 9918 "src/unix/lwt_log.ml" 272 9888 9930
type(
  Lwt_unix.file_descr -> string -> unit Lwt.t
)
ident(
  int_ref write_string "src/unix/lwt_log.ml" 222 8100 8104 "src/unix/lwt_log.ml" 222 8100 8116
)
"src/unix/lwt_log.ml" 272 9888 9931 "src/unix/lwt_log.ml" 272 9888 9933
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 266 9640 9686 "src/unix/lwt_log.ml" 266 9640 9688
)
"src/unix/lwt_log.ml" 272 9888 9935 "src/unix/lwt_log.ml" 272 9888 9944
type(
  syslog_connection_type -> string -> string
)
ident(
  int_ref make_line "src/unix/lwt_log.ml" 259 9222 9246 "src/unix/lwt_log.ml" 259 9222 9255
)
"src/unix/lwt_log.ml" 272 9888 9945 "src/unix/lwt_log.ml" 272 9888 9956
type(
  syslog_connection_type
)
ident(
  int_ref socket_type "src/unix/lwt_log.ml" 266 9640 9674 "src/unix/lwt_log.ml" 266 9640 9685
)
"src/unix/lwt_log.ml" 272 9888 9957 "src/unix/lwt_log.ml" 272 9888 9961
type(
  string
)
ident(
  int_ref line "src/unix/lwt_log.ml" 269 9772 9796 "src/unix/lwt_log.ml" 269 9772 9800
)
"src/unix/lwt_log.ml" 272 9888 9934 "src/unix/lwt_log.ml" 272 9888 9962
call(
  stack
)
type(
  string
)
"src/unix/lwt_log.ml" 272 9888 9918 "src/unix/lwt_log.ml" 272 9888 9962
call(
  stack
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 272 9888 9963 "src/unix/lwt_log.ml" 272 9888 9966
type(
  unit Lwt.t -> (unit -> unit Lwt.t) -> unit Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/unix/lwt_log.ml" 272 9888 9971 "src/unix/lwt_log.ml" 272 9888 9973
type(
  unit
)
"src/unix/lwt_log.ml" 273 9977 10007 "src/unix/lwt_log.ml" 273 9977 10012
type(
  syslog_connection_type -> Lwt_unix.file_descr -> string list -> unit Lwt.t
)
ident(
  int_ref print "src/unix/lwt_log.ml" 266 9640 9668 "src/unix/lwt_log.ml" 266 9640 9673
)
"src/unix/lwt_log.ml" 273 9977 10013 "src/unix/lwt_log.ml" 273 9977 10024
type(
  syslog_connection_type
)
ident(
  int_ref socket_type "src/unix/lwt_log.ml" 266 9640 9674 "src/unix/lwt_log.ml" 266 9640 9685
)
"src/unix/lwt_log.ml" 273 9977 10025 "src/unix/lwt_log.ml" 273 9977 10027
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 266 9640 9686 "src/unix/lwt_log.ml" 266 9640 9688
)
"src/unix/lwt_log.ml" 273 9977 10028 "src/unix/lwt_log.ml" 273 9977 10033
type(
  string list
)
ident(
  int_ref lines "src/unix/lwt_log.ml" 269 9772 9804 "src/unix/lwt_log.ml" 269 9772 9809
)
"src/unix/lwt_log.ml" 273 9977 10007 "src/unix/lwt_log.ml" 273 9977 10033
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 272 9888 9967 "src/unix/lwt_log.ml" 273 9977 10033
type(
  unit -> unit Lwt.t
)
"src/unix/lwt_log.ml" 272 9888 9918 "src/unix/lwt_log.ml" 273 9977 10033
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 271 9849 9877 "src/unix/lwt_log.ml" 273 9977 10034
type(
  unit -> unit Lwt.t
)
"src/unix/lwt_log.ml" 275 10073 10119 "src/unix/lwt_log.ml" 275 10073 10120
type(
  Unix.error
)
"src/unix/lwt_log.ml" 275 10073 10122 "src/unix/lwt_log.ml" 275 10073 10123
type(
  string
)
"src/unix/lwt_log.ml" 275 10073 10125 "src/unix/lwt_log.ml" 275 10073 10126
type(
  string
)
"src/unix/lwt_log.ml" 275 10073 10103 "src/unix/lwt_log.ml" 275 10073 10127
type(
  exn
)
"src/unix/lwt_log.ml" 277 10186 10218 "src/unix/lwt_log.ml" 277 10186 10226
type(
  Lwt_unix.file_descr -> unit Lwt.t
)
ident(
  int_ref shutdown "src/unix/lwt_log.ml" 157 5337 5341 "src/unix/lwt_log.ml" 157 5337 5349
)
"src/unix/lwt_log.ml" 277 10186 10227 "src/unix/lwt_log.ml" 277 10186 10229
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 266 9640 9686 "src/unix/lwt_log.ml" 266 9640 9688
)
"src/unix/lwt_log.ml" 277 10186 10218 "src/unix/lwt_log.ml" 277 10186 10229
call(
  stack
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 277 10186 10230 "src/unix/lwt_log.ml" 277 10186 10233
type(
  unit Lwt.t -> (unit -> unit Lwt.t) -> unit Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/unix/lwt_log.ml" 277 10186 10238 "src/unix/lwt_log.ml" 277 10186 10240
type(
  unit
)
"src/unix/lwt_log.ml" 278 10244 10276 "src/unix/lwt_log.ml" 278 10244 10289
type(
  (syslog_connection_type * Lwt_unix.file_descr) option ref
)
ident(
  int_ref syslog_socket "src/unix/lwt_log.ml" 245 8790 8796 "src/unix/lwt_log.ml" 245 8790 8809
)
"src/unix/lwt_log.ml" 278 10244 10290 "src/unix/lwt_log.ml" 278 10244 10292
type(
  (syslog_connection_type * Lwt_unix.file_descr) option ref ->
  (syslog_connection_type * Lwt_unix.file_descr) option -> unit
)
ident(
  ext_ref Pervasives.( := )
)
"src/unix/lwt_log.ml" 278 10244 10293 "src/unix/lwt_log.ml" 278 10244 10297
type(
  (syslog_connection_type * Lwt_unix.file_descr) option
)
"src/unix/lwt_log.ml" 278 10244 10276 "src/unix/lwt_log.ml" 278 10244 10297
type(
  unit
)
"src/unix/lwt_log.ml" 279 10299 10331 "src/unix/lwt_log.ml" 279 10299 10341
type(
  unit -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  int_ref get_syslog "src/unix/lwt_log.ml" 246 8856 8862 "src/unix/lwt_log.ml" 246 8856 8872
)
"src/unix/lwt_log.ml" 279 10299 10342 "src/unix/lwt_log.ml" 279 10299 10344
type(
  unit
)
"src/unix/lwt_log.ml" 279 10299 10331 "src/unix/lwt_log.ml" 279 10299 10344
call(
  stack
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 279 10299 10345 "src/unix/lwt_log.ml" 279 10299 10348
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t ->
  (syslog_connection_type * Lwt_unix.file_descr -> unit Lwt.t) -> unit Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/unix/lwt_log.ml" 279 10299 10354 "src/unix/lwt_log.ml" 279 10299 10365
type(
  syslog_connection_type
)
ident(
  def socket_type "src/unix/lwt_log.ml" 280 10374 10406 "src/unix/lwt_log.ml" 281 10465 10523
)
"src/unix/lwt_log.ml" 279 10299 10367 "src/unix/lwt_log.ml" 279 10299 10369
type(
  Lwt_unix.file_descr
)
ident(
  def fd "src/unix/lwt_log.ml" 280 10374 10406 "src/unix/lwt_log.ml" 281 10465 10523
)
"src/unix/lwt_log.ml" 279 10299 10353 "src/unix/lwt_log.ml" 279 10299 10370
type(
  syslog_connection_type * Lwt_unix.file_descr
)
"src/unix/lwt_log.ml" 280 10374 10406 "src/unix/lwt_log.ml" 280 10374 10418
type(
  Lwt_unix.file_descr -> string -> unit Lwt.t
)
ident(
  int_ref write_string "src/unix/lwt_log.ml" 222 8100 8104 "src/unix/lwt_log.ml" 222 8100 8116
)
"src/unix/lwt_log.ml" 280 10374 10419 "src/unix/lwt_log.ml" 280 10374 10421
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 279 10299 10367 "src/unix/lwt_log.ml" 279 10299 10369
)
"src/unix/lwt_log.ml" 280 10374 10423 "src/unix/lwt_log.ml" 280 10374 10432
type(
  syslog_connection_type -> string -> string
)
ident(
  int_ref make_line "src/unix/lwt_log.ml" 259 9222 9246 "src/unix/lwt_log.ml" 259 9222 9255
)
"src/unix/lwt_log.ml" 280 10374 10433 "src/unix/lwt_log.ml" 280 10374 10444
type(
  syslog_connection_type
)
ident(
  int_ref socket_type "src/unix/lwt_log.ml" 279 10299 10354 "src/unix/lwt_log.ml" 279 10299 10365
)
"src/unix/lwt_log.ml" 280 10374 10445 "src/unix/lwt_log.ml" 280 10374 10449
type(
  string
)
ident(
  int_ref line "src/unix/lwt_log.ml" 269 9772 9796 "src/unix/lwt_log.ml" 269 9772 9800
)
"src/unix/lwt_log.ml" 280 10374 10422 "src/unix/lwt_log.ml" 280 10374 10450
call(
  stack
)
type(
  string
)
"src/unix/lwt_log.ml" 280 10374 10406 "src/unix/lwt_log.ml" 280 10374 10450
call(
  stack
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 280 10374 10451 "src/unix/lwt_log.ml" 280 10374 10454
type(
  unit Lwt.t -> (unit -> unit Lwt.t) -> unit Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/unix/lwt_log.ml" 280 10374 10459 "src/unix/lwt_log.ml" 280 10374 10461
type(
  unit
)
"src/unix/lwt_log.ml" 281 10465 10497 "src/unix/lwt_log.ml" 281 10465 10502
type(
  syslog_connection_type -> Lwt_unix.file_descr -> string list -> unit Lwt.t
)
ident(
  int_ref print "src/unix/lwt_log.ml" 266 9640 9668 "src/unix/lwt_log.ml" 266 9640 9673
)
"src/unix/lwt_log.ml" 281 10465 10503 "src/unix/lwt_log.ml" 281 10465 10514
type(
  syslog_connection_type
)
ident(
  int_ref socket_type "src/unix/lwt_log.ml" 279 10299 10354 "src/unix/lwt_log.ml" 279 10299 10365
)
"src/unix/lwt_log.ml" 281 10465 10515 "src/unix/lwt_log.ml" 281 10465 10517
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 279 10299 10367 "src/unix/lwt_log.ml" 279 10299 10369
)
"src/unix/lwt_log.ml" 281 10465 10518 "src/unix/lwt_log.ml" 281 10465 10523
type(
  string list
)
ident(
  int_ref lines "src/unix/lwt_log.ml" 269 9772 9804 "src/unix/lwt_log.ml" 269 9772 9809
)
"src/unix/lwt_log.ml" 281 10465 10497 "src/unix/lwt_log.ml" 281 10465 10523
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 280 10374 10455 "src/unix/lwt_log.ml" 281 10465 10523
type(
  unit -> unit Lwt.t
)
"src/unix/lwt_log.ml" 280 10374 10406 "src/unix/lwt_log.ml" 281 10465 10523
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 279 10299 10349 "src/unix/lwt_log.ml" 281 10465 10523
type(
  syslog_connection_type * Lwt_unix.file_descr -> unit Lwt.t
)
"src/unix/lwt_log.ml" 279 10299 10331 "src/unix/lwt_log.ml" 281 10465 10523
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 278 10244 10276 "src/unix/lwt_log.ml" 281 10465 10523
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 277 10186 10234 "src/unix/lwt_log.ml" 281 10465 10523
type(
  unit -> unit Lwt.t
)
"src/unix/lwt_log.ml" 277 10186 10218 "src/unix/lwt_log.ml" 281 10465 10523
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 282 10524 10554 "src/unix/lwt_log.ml" 282 10524 10557
type(
  exn
)
ident(
  def exn "src/unix/lwt_log.ml" 282 10524 10561 "src/unix/lwt_log.ml" 282 10524 10573
)
"src/unix/lwt_log.ml" 282 10524 10561 "src/unix/lwt_log.ml" 282 10524 10569
type(
  exn -> unit Lwt.t
)
ident(
  ext_ref Lwt.fail
)
"src/unix/lwt_log.ml" 282 10524 10570 "src/unix/lwt_log.ml" 282 10524 10573
type(
  exn
)
ident(
  int_ref exn "src/unix/lwt_log.ml" 282 10524 10554 "src/unix/lwt_log.ml" 282 10524 10557
)
"src/unix/lwt_log.ml" 282 10524 10561 "src/unix/lwt_log.ml" 282 10524 10573
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 274 10035 10063 "src/unix/lwt_log.ml" 282 10524 10574
type(
  exn -> unit Lwt.t
)
"src/unix/lwt_log.ml" 270 9813 9839 "src/unix/lwt_log.ml" 282 10524 10574
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 266 9640 9691 "src/unix/lwt_log.ml" 282 10524 10574
type(
  string list -> unit Lwt.t
)
"src/unix/lwt_log.ml" 284 10598 10618 "src/unix/lwt_log.ml" 284 10598 10628
type(
  unit -> (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
ident(
  int_ref get_syslog "src/unix/lwt_log.ml" 246 8856 8862 "src/unix/lwt_log.ml" 246 8856 8872
)
"src/unix/lwt_log.ml" 284 10598 10629 "src/unix/lwt_log.ml" 284 10598 10631
type(
  unit
)
"src/unix/lwt_log.ml" 284 10598 10618 "src/unix/lwt_log.ml" 284 10598 10631
call(
  stack
)
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t
)
"src/unix/lwt_log.ml" 284 10598 10632 "src/unix/lwt_log.ml" 284 10598 10635
type(
  (syslog_connection_type * Lwt_unix.file_descr) Lwt.t ->
  (syslog_connection_type * Lwt_unix.file_descr -> unit Lwt.t) -> unit Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/unix/lwt_log.ml" 284 10598 10641 "src/unix/lwt_log.ml" 284 10598 10652
type(
  syslog_connection_type
)
ident(
  def socket_type "src/unix/lwt_log.ml" 285 10661 10681 "src/unix/lwt_log.ml" 285 10661 10707
)
"src/unix/lwt_log.ml" 284 10598 10654 "src/unix/lwt_log.ml" 284 10598 10656
type(
  Lwt_unix.file_descr
)
ident(
  def fd "src/unix/lwt_log.ml" 285 10661 10681 "src/unix/lwt_log.ml" 285 10661 10707
)
"src/unix/lwt_log.ml" 284 10598 10640 "src/unix/lwt_log.ml" 284 10598 10657
type(
  syslog_connection_type * Lwt_unix.file_descr
)
"src/unix/lwt_log.ml" 285 10661 10681 "src/unix/lwt_log.ml" 285 10661 10686
type(
  syslog_connection_type -> Lwt_unix.file_descr -> string list -> unit Lwt.t
)
ident(
  int_ref print "src/unix/lwt_log.ml" 266 9640 9668 "src/unix/lwt_log.ml" 266 9640 9673
)
"src/unix/lwt_log.ml" 285 10661 10687 "src/unix/lwt_log.ml" 285 10661 10698
type(
  syslog_connection_type
)
ident(
  int_ref socket_type "src/unix/lwt_log.ml" 284 10598 10641 "src/unix/lwt_log.ml" 284 10598 10652
)
"src/unix/lwt_log.ml" 285 10661 10699 "src/unix/lwt_log.ml" 285 10661 10701
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 284 10598 10654 "src/unix/lwt_log.ml" 284 10598 10656
)
"src/unix/lwt_log.ml" 285 10661 10702 "src/unix/lwt_log.ml" 285 10661 10707
type(
  string list
)
ident(
  int_ref lines "src/unix/lwt_log.ml" 255 9063 9094 "src/unix/lwt_log.ml" 255 9063 9099
)
"src/unix/lwt_log.ml" 285 10661 10681 "src/unix/lwt_log.ml" 285 10661 10707
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 284 10598 10636 "src/unix/lwt_log.ml" 285 10661 10707
type(
  syslog_connection_type * Lwt_unix.file_descr -> unit Lwt.t
)
"src/unix/lwt_log.ml" 284 10598 10618 "src/unix/lwt_log.ml" 285 10661 10707
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 266 9640 9660 "src/unix/lwt_log.ml" 285 10661 10707
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 259 9222 9242 "src/unix/lwt_log.ml" 285 10661 10707
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 258 9172 9192 "src/unix/lwt_log.ml" 285 10661 10707
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 257 9144 9161 "src/unix/lwt_log.ml" 285 10661 10708
type(
  unit -> unit Lwt.t
)
"src/unix/lwt_log.ml" 256 9103 9118 "src/unix/lwt_log.ml" 285 10661 10708
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 255 9063 9075 "src/unix/lwt_log.ml" 285 10661 10709
type(
  section -> level -> string list -> unit Lwt.t
)
"src/unix/lwt_log.ml" 286 10710 10726 "src/unix/lwt_log.ml" 286 10710 10728
type(
  unit
)
"src/unix/lwt_log.ml" 287 10732 10752 "src/unix/lwt_log.ml" 287 10732 10753
type(
  (syslog_connection_type * Lwt_unix.file_descr) option ref ->
  (syslog_connection_type * Lwt_unix.file_descr) option
)
ident(
  ext_ref Pervasives.( ! )
)
"src/unix/lwt_log.ml" 287 10732 10753 "src/unix/lwt_log.ml" 287 10732 10766
type(
  (syslog_connection_type * Lwt_unix.file_descr) option ref
)
ident(
  int_ref syslog_socket "src/unix/lwt_log.ml" 245 8790 8796 "src/unix/lwt_log.ml" 245 8790 8809
)
"src/unix/lwt_log.ml" 287 10732 10752 "src/unix/lwt_log.ml" 287 10732 10766
type(
  (syslog_connection_type * Lwt_unix.file_descr) option
)
"src/unix/lwt_log.ml" 288 10772 10790 "src/unix/lwt_log.ml" 288 10772 10794
type(
  (syslog_connection_type * Lwt_unix.file_descr) option
)
"src/unix/lwt_log.ml" 289 10798 10818 "src/unix/lwt_log.ml" 289 10798 10833
type(
  unit Lwt.t
)
ident(
  ext_ref Lwt.return_unit
)
"src/unix/lwt_log.ml" 290 10834 10857 "src/unix/lwt_log.ml" 290 10834 10869
type(
  syslog_connection_type
)
ident(
  def _socket_type "src/unix/lwt_log.ml" 291 10878 10898 "src/unix/lwt_log.ml" 291 10878 10909
)
"src/unix/lwt_log.ml" 290 10834 10871 "src/unix/lwt_log.ml" 290 10834 10873
type(
  Lwt_unix.file_descr
)
ident(
  def fd "src/unix/lwt_log.ml" 291 10878 10898 "src/unix/lwt_log.ml" 291 10878 10909
)
"src/unix/lwt_log.ml" 290 10834 10856 "src/unix/lwt_log.ml" 290 10834 10874
type(
  syslog_connection_type * Lwt_unix.file_descr
)
"src/unix/lwt_log.ml" 290 10834 10852 "src/unix/lwt_log.ml" 290 10834 10874
type(
  (syslog_connection_type * Lwt_unix.file_descr) option
)
"src/unix/lwt_log.ml" 291 10878 10898 "src/unix/lwt_log.ml" 291 10878 10906
type(
  Lwt_unix.file_descr -> unit Lwt.t
)
ident(
  int_ref shutdown "src/unix/lwt_log.ml" 157 5337 5341 "src/unix/lwt_log.ml" 157 5337 5349
)
"src/unix/lwt_log.ml" 291 10878 10907 "src/unix/lwt_log.ml" 291 10878 10909
type(
  Lwt_unix.file_descr
)
ident(
  int_ref fd "src/unix/lwt_log.ml" 290 10834 10871 "src/unix/lwt_log.ml" 290 10834 10873
)
"src/unix/lwt_log.ml" 291 10878 10898 "src/unix/lwt_log.ml" 291 10878 10909
call(
  tail
)
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 287 10732 10746 "src/unix/lwt_log.ml" 291 10878 10909
type(
  unit Lwt.t
)
"src/unix/lwt_log.ml" 286 10710 10721 "src/unix/lwt_log.ml" 291 10878 10910
type(
  unit -> unit Lwt.t
)
"src/unix/lwt_log.ml" 254 9056 9058 "src/unix/lwt_log.ml" 291 10878 10910
call(
  tail
)
type(
  logger
)
"src/unix/lwt_log.ml" 246 8856 8858 "src/unix/lwt_log.ml" 291 10878 10910
type(
  logger
)
"src/unix/lwt_log.ml" 245 8790 8792 "src/unix/lwt_log.ml" 291 10878 10910
type(
  logger
)