Showing
1 changed file
with
3 additions
and
0 deletions
@@ -150,6 +150,9 @@ module.exports = (req, res, next) => { | @@ -150,6 +150,9 @@ module.exports = (req, res, next) => { | ||
150 | }); | 150 | }); |
151 | 151 | ||
152 | if (duration > config.slowRoute.min && duration < config.slowRoute.max) { | 152 | if (duration > config.slowRoute.min && duration < config.slowRoute.max) { |
153 | + logger.info('slow:item =>', JSON.stringify(item)); | ||
154 | + logger.info('slow:data =>', JSON.stringify(data)); | ||
155 | + | ||
153 | slowRouterSqlSender.addMessage(msg2row.slowRouter(data)); | 156 | slowRouterSqlSender.addMessage(msg2row.slowRouter(data)); |
154 | } | 157 | } |
155 | } | 158 | } |
-
Please register or login to post a comment