diff options
Diffstat (limited to 'middlewares/reqValidators')
-rw-r--r-- | middlewares/reqValidators/remote.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/middlewares/reqValidators/remote.js b/middlewares/reqValidators/remote.js index 642dad1c7..a9d2cdf20 100644 --- a/middlewares/reqValidators/remote.js +++ b/middlewares/reqValidators/remote.js | |||
@@ -12,7 +12,7 @@ | |||
12 | req.checkBody('key', 'Should have a key').notEmpty() | 12 | req.checkBody('key', 'Should have a key').notEmpty() |
13 | req.checkBody('data', 'Should have data').notEmpty() | 13 | req.checkBody('data', 'Should have data').notEmpty() |
14 | 14 | ||
15 | logger.debug('Checking secureRequest parameters', { parameters: req.body }) | 15 | logger.debug('Checking secureRequest parameters', { parameters: { data: req.body.data, keyLength: req.body.key.length } }) |
16 | 16 | ||
17 | checkErrors(req, res, next) | 17 | checkErrors(req, res, next) |
18 | } | 18 | } |