Software /
code /
prosody
Comparison
net/server_epoll.lua @ 12342:cba0b93320b7
net.server_epoll: Disable verbose mode by default
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 12 Feb 2022 18:47:22 +0100 |
parent | 12110:b5b799a2a10c |
child | 12480:7e9ebdc75ce4 |
comparison
equal
deleted
inserted
replaced
12341:48aa833f9649 | 12342:cba0b93320b7 |
---|---|
66 -- Maximum and minimum amount of time to sleep waiting for events (adjusted for pending timers) | 66 -- Maximum and minimum amount of time to sleep waiting for events (adjusted for pending timers) |
67 max_wait = 86400; | 67 max_wait = 86400; |
68 min_wait = 0.001; | 68 min_wait = 0.001; |
69 | 69 |
70 -- Enable extra noisy debug logging | 70 -- Enable extra noisy debug logging |
71 -- TODO disable once considered stable | 71 verbose = false; |
72 verbose = true; | |
73 | 72 |
74 -- EXPERIMENTAL | 73 -- EXPERIMENTAL |
75 -- Whether to kill connections in case of callback errors. | 74 -- Whether to kill connections in case of callback errors. |
76 fatal_errors = false; | 75 fatal_errors = false; |
77 | 76 |