Skip to content

No stack traces on error #29

@ckeeney

Description

@ckeeney

When a command throws an error, the error message prints to the console but not the full stack trace. This makes development very difficult.

Example:

// ./commands/debug.js

const anotherFunction = () => {
    throw Error("you can't find me.")
}

const aFunction = () => {
    anotherFunction();
}

export default async function debug() {
    aFunction();
}

image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions