Skip to content

effect@2.4.18

Choose a tag to compare

@github-actions github-actions released this 05 Apr 00:44
· 2478 commits to main since this release
2fc20b3

Patch Changes

  • #2473 dadc690 Thanks @tim-smart! - add Logger.withConsoleLog/withConsoleError apis

    These apis send a Logger's output to console.log/console.error respectively.

    import { Logger } from "effect";
    
    // send output to stderr
    const stderrLogger = Logger.withConsoleError(Logger.stringLogger);