Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@cca-io/re-logger

Package Overview
Dependencies
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cca-io/re-logger

Simple logger library for Reason/BuckleScript apps

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
2
Weekly downloads
 
Created
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"],
  ...
}

This library uses the namespace ReLogger to avoid conflicts if there is already a Logger module in your project. If that is not the case, you may want to open the ReLogger module globally in your bsconfig.json:

{
  "name": "my-app",
  ...
  "bs-dependencies": ["reason-react", "@cca-io/re-logger"],
  ...
  "bsc-flags": ["-bs-super-errors", "-open ReLogger"],
  ...
}

Usage

Example:

open ReLogger; /* unless you already opened it globally in bsconfig.json */

module Log = (val Logger.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:

Logger.setLoggerImpl((module MyNativeLoggerImpl));

Keywords

FAQs

Package last updated on 05 Dec 2018

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc