Skip to content
This repository has been archived by the owner on Jan 27, 2022. It is now read-only.

Commit

Permalink
fix(Basha): Warn on premature exit
Browse files Browse the repository at this point in the history
  • Loading branch information
nokome committed Nov 3, 2020
1 parent 5d471ab commit 4022d4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ export class Basha extends Listener {
})

terminal.onExit(() => {
if (!this.isStopping) log.error(`Bash exited prematurely`)
if (!this.isStopping) log.warn(`Bash exited prematurely`)
if (this.whenReady !== undefined) this.whenReady()
this.terminal = undefined
})
Expand Down

0 comments on commit 4022d4c

Please sign in to comment.