Skip to content

Configure stdio to stream log.error to console.error #146

@jirispilka

Description

@jirispilka

Something like this might do the trick:

const originalError = log.error.bind(log);
log.error = (...args: unknown[]) => {
    console.error(...args);
};

Metadata

Metadata

Assignees

No one assigned

    Labels

    t-aiIssues owned by the AI team.

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions