File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 1
1
const Hermes = require ( 'hermesjs' ) ;
2
2
const app = new Hermes ( ) ;
3
- const { cyan, gray } = require ( 'colors/safe' ) ;
3
+ const { cyan, gray, yellow } = require ( 'colors/safe' ) ;
4
4
const buffer2string = require ( './middlewares/buffer2string' ) ;
5
5
const string2json = require ( './middlewares/string2json' ) ;
6
6
const json2string = require ( './middlewares/json2string' ) ;
@@ -22,9 +22,11 @@ app.use(logger);
22
22
// Channels
23
23
{ % for channelName , channel in asyncapi . channels ( ) - % }
24
24
{ % if channel . hasPublish ( ) - % }
25
+ console . log ( cyan . bold . inverse ( ' SUB ' ) , gray ( 'Subscribed to' ) , yellow ( '{{channelName}}' ) ) ;
25
26
app . use ( { { channelName | camelCase } } ) ;
26
27
{ % endif - % }
27
28
{ % if channel . hasSubscribe ( ) - % }
29
+ console . log ( yellow . bold . inverse ( ' PUB ' ) , gray ( 'Will eventually publish to' ) , yellow ( '{{channelName}}' ) ) ;
28
30
app . useOutbound ( { { channelName | camelCase } } ) ;
29
31
{ % endif - % }
30
32
{ % endfor % }
You can’t perform that action at this time.
0 commit comments