- 🎨 :art when improving the format/structure of the code
- 🚀 :rocket when improving performance
- ✏️ :pencil2 when writing docs
- 💡 :bulb new idea
- 🚧 :construction work in progress
- ➕ :heavy_plus_sign when adding feature
- ➖ :heavy_minus_sign when removing feature
- 🔈 :speaker when adding logging
- 🔇 :mute when reducing logging
- 🐛 :bug when fixing a bug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module['exports'] = function echoHttp (hook) { | |
hook.debug("Debug messages are sent to the debug console"); | |
hook.debug(hook.params); | |
hook.debug(hook.req.path); | |
hook.debug(hook.req.method); | |