Socket
Socket
Sign inDemoInstall

appcore-log

Package Overview
Dependencies
4
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    appcore-log

Cross-platform console logging for Appcore apps.


Version published
Maintainers
1
Install size
140 kB
Created

Readme

Source

Appcore Log

This plugin adds the log() method to an Appcore app. Under the hood, it uses debug, meaning it is both colorful and cross-platform compatible.

app.use(require("@beneaththeink/appcore-log"));

app.ready(function() {
	app.log("My app is ready!");
});

The plugin also adds some alternative logging methods in case you need to be more specific.

app.ready(function() {
	app.log.debug("A debug message.");
	app.log.info("An info message.");
	app.log.warn("A warning.");
	app.log.error("An error.");
});

Using these methods instead of the generic log() method means you can filter out messages based on their level.

app.set("logLevel", "info"); // will only log info, warn and error messages

Note: This plugin will catch and log errors thrown by the application, instead of crashing the program like normal. Set logErrors to false before running the plugin to disable this feature.

Keywords

FAQs

Last updated on 08 Nov 2015

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