Skip to content

mickelluiten/node-homey-log

 
 

Repository files navigation

homey-log

Introduction

This module can be used in a Homey App to send events to Sentry.

Note: [email protected] and higher is only compatible with Homey Apps SDK version 3. If you are still on version 2, please use [email protected] or lower.

Installation

npm install --save homey-log

Getting started

In env.json, add the Sentry URL:

{
	"HOMEY_LOG_URL": "https://foo:[email protected]/123456"
}

In app.js, include the library and create a new Log instance:

const { Log } = require('homey-log');

class MyApp extends Homey.App {
    onInit() {
        this.homeyLog = new Log({ homey: this.homey });
    }
}

Notes

  • When your app crashes due to an uncaughtException or unhandledRejection, this will automatically be sent to Sentry.
  • When running your app with homey app run events will not be sent to Sentry.

Docs

See https://athombv.github.io/node-homey-log

Changelog

2.0.0

This version is only SDK version 3 compatible. It now requires a different way of setting up the Log instance, see Getting Started.

About

Make debugging easier for developers

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%