File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -8,10 +8,10 @@ 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 } '` : ''
1313
14- const text = `Streaming${ including } ${ excluding } Logs ${ filters } [Ctrl-C to Cancel]`
14+ const text = `Streaming${ including } Logs ${ excluding } ${ filters } [Ctrl-C to Cancel]`
1515 const spinner = ora ( text )
1616 const output = fn => {
1717 spinner . stop ( )
You can’t perform that action at this time.
0 commit comments