Skip to content

Commit

Permalink
fix: updated incorrect log messages (#132)
Browse files Browse the repository at this point in the history
Signed-off-by: Jeromy Cannon <[email protected]>
  • Loading branch information
jeromy-cannon authored Mar 6, 2024
1 parent e4bd1ef commit d890974
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/network.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ export class NetworkCommand extends BaseCommand {
try {
await tasks.run()
} catch (e) {
throw new FullstackTestingError('Error starting node', e)
throw new FullstackTestingError('Error destroying network', e)
}

return true
Expand Down
2 changes: 1 addition & 1 deletion src/commands/node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ export class NodeCommand extends BaseCommand {
try {
await tasks.run()
} catch (e) {
throw new FullstackTestingError('Error starting node', e)
throw new FullstackTestingError('Error stopping node', e)
}

return true
Expand Down

0 comments on commit d890974

Please sign in to comment.