* Checks whether request logging is disabled for the given request. * * @param {object} req Raw or Fastify request object. * @returns {boolean} `true` when logging should be skipped.
(req)
| 32 | * @returns {boolean} `true` when logging should be skipped. |
| 33 | */ |
| 34 | isLogDisabled (req) { |
| 35 | return this.isDisableRequestLoggingFunction |
| 36 | ? this.disableRequestLogging(req) |
| 37 | : this.disableRequestLogging |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * Logs an incoming request at `info` level. |
no outgoing calls
no test coverage detected