mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-24 23:37:18 +00:00
86 lines
2.1 KiB
JavaScript
86 lines
2.1 KiB
JavaScript
/*
|
|
* Copyright 2016 resin.io
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
'use strict'
|
|
|
|
const _ = require('lodash')
|
|
const resinCorvus = require('resin-corvus/browser')
|
|
const packageJSON = require('../../../../package.json')
|
|
const settings = require('../models/settings')
|
|
|
|
resinCorvus.install({
|
|
services: {
|
|
sentry: settings.get('analyticsSentryToken') ||
|
|
_.get(packageJSON, [ 'analytics', 'sentry', 'token' ]),
|
|
mixpanel: settings.get('analyticsMixpanelToken') ||
|
|
_.get(packageJSON, [ 'analytics', 'mixpanel', 'token' ])
|
|
},
|
|
options: {
|
|
release: packageJSON.version,
|
|
shouldReport: () => {
|
|
return settings.get('errorReporting')
|
|
}
|
|
}
|
|
})
|
|
|
|
/**
|
|
* @summary Log a debug message
|
|
* @function
|
|
* @public
|
|
*
|
|
* @description
|
|
* This function sends the debug message to error reporting services.
|
|
*
|
|
* @param {String} message - message
|
|
*
|
|
* @example
|
|
* analytics.log('Hello World');
|
|
*/
|
|
exports.logDebug = resinCorvus.logDebug
|
|
|
|
/**
|
|
* @summary Log an event
|
|
* @function
|
|
* @public
|
|
*
|
|
* @description
|
|
* This function sends the debug message to product analytics services.
|
|
*
|
|
* @param {String} message - message
|
|
* @param {Object} [data] - event data
|
|
*
|
|
* @example
|
|
* analytics.logEvent('Select image', {
|
|
* image: '/dev/disk2'
|
|
* });
|
|
*/
|
|
exports.logEvent = resinCorvus.logEvent
|
|
|
|
/**
|
|
* @summary Log an exception
|
|
* @function
|
|
* @public
|
|
*
|
|
* @description
|
|
* This function logs an exception to error reporting services.
|
|
*
|
|
* @param {Error} exception - exception
|
|
*
|
|
* @example
|
|
* analytics.logException(new Error('Something happened'));
|
|
*/
|
|
exports.logException = resinCorvus.logException
|