File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -8,10 +8,9 @@ const read = require('./read')
88
99module . exports = async ( selected , logs , groups , options ) => {
1010 const including = options . include && options . include . length > 0 ? ` '${ options . include . join ( ', ' ) } '` : ''
11- const excluding = options . exclude && options . exclude . length > 0 ? ` '${ options . exclude . join ( ', ' ) } '` : ''
11+ const excluding = options . exclude && options . exclude . length > 0 ? ` excluding '${ options . exclude . join ( ', ' ) } '` : ''
1212 const filters = options . filter && options . filter . length > 0 ? ` containing '${ options . filter } '` : ''
13-
14- const text = chalk . bold ( `Streaming${ including } ${ excluding } Logs${ filters } ` ) . concat ( ' [Ctrl-C to Cancel]\n' )
13+ const text = chalk . bold ( `Streaming${ including } Logs${ excluding } ${ filters } ` ) . concat ( ' [Ctrl-C to Cancel]\n' )
1514 const spinner = ora ( text )
1615 const output = fn => {
1716 spinner . stop ( )
You can’t perform that action at this time.
0 commit comments