Skip to content

Commit 1dadcf5

Browse files
authoredJun 10, 2020
feat: Add more logs (#18)
1 parent 27ffc15 commit 1dadcf5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎template/src/api/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const Hermes = require('hermesjs');
22
const app = new Hermes();
3-
const { cyan, gray } = require('colors/safe');
3+
const { cyan, gray, yellow } = require('colors/safe');
44
const buffer2string = require('./middlewares/buffer2string');
55
const string2json = require('./middlewares/string2json');
66
const json2string = require('./middlewares/json2string');
@@ -22,9 +22,11 @@ app.use(logger);
2222
// Channels
2323
{% for channelName, channel in asyncapi.channels() -%}
2424
{% if channel.hasPublish() -%}
25+
console.log(cyan.bold.inverse(' SUB '), gray('Subscribed to'), yellow('{{channelName}}'));
2526
app.use({{ channelName | camelCase }});
2627
{% endif -%}
2728
{% if channel.hasSubscribe() -%}
29+
console.log(yellow.bold.inverse(' PUB '), gray('Will eventually publish to'), yellow('{{channelName}}'));
2830
app.useOutbound({{ channelName | camelCase }});
2931
{% endif -%}
3032
{% endfor %}

0 commit comments

Comments
 (0)
Please sign in to comment.