Socket
Socket
Sign inDemoInstall

@cca-io/re-logger

Package Overview
Dependencies
1
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @cca-io/re-logger

Simple logger library for Reason/BuckleScript apps


Version published
Weekly downloads
1
decreased by-50%
Maintainers
2
Install size
9.22 kB
Created
Weekly downloads
 

Readme

Source

re-logger

Simple logger library for Reason/BuckleScript apps.

Installation

# yarn
yarn add @cca-io/re-logger

# or npm
npm install @cca-io/re-logger

Then add re-logger to the dependencies in your bsconfig.json, e.g.:

{
  "name": "my-app",
  ...
  "bs-dependencies": ["reason-react", "@cca-io/re-logger"],
  ...
}

Usage

Example:

module Log = (val ReLogger.make(__MODULE__));

Log.info("Starting");

/* ... */

Log.error2("Startup error", error);

The actual logger implementation is pluggable, so it can be swapped out e.g. for usage with React Native:

ReLogger.setLoggerImpl((module MyNativeLoggerImpl));

Keywords

FAQs

Last updated on 17 Jun 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc