(handlerTimeout)
| 634 | } |
| 635 | |
| 636 | function validateHandlerTimeoutOption (handlerTimeout) { |
| 637 | if (handlerTimeout === undefined) return |
| 638 | if (!Number.isInteger(handlerTimeout) || handlerTimeout <= 0) { |
| 639 | throw new FST_ERR_ROUTE_HANDLER_TIMEOUT_OPTION_NOT_INT(handlerTimeout) |
| 640 | } |
| 641 | } |
| 642 | |
| 643 | function validateLogLevelOption (logLevel, method, path, logger) { |
| 644 | if (logLevel == null || logLevel === '') return |