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

backtrace-service

Package Overview
Dependencies
Maintainers
5
Versions
153
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

backtrace-service - npm Package Compare versions

Comparing version 2.0.8 to 2.0.9

2

lib/log/logger.js

@@ -52,3 +52,3 @@ "use strict";

Logger.initializeBacktrace = function (opts) {
if (!opts || opts.endpoint || opts.token) {
if (!opts || !opts.endpoint || !opts.token) {
return;

@@ -55,0 +55,0 @@ }

@@ -31,3 +31,3 @@ "use strict";

if (this.configuration.backtrace &&
this.configuration.backtrace.remoteLog === true) {
this.configuration.backtrace.remoteLog !== false) {
logger_1.Logger.initializeBacktrace(this.configuration.backtrace);

@@ -34,0 +34,0 @@ }

{
"name": "backtrace-service",
"version": "2.0.8",
"version": "2.0.9",
"description": "Common tools for Backtrace Node services",

@@ -5,0 +5,0 @@ "author": "Backtrace",

@@ -22,3 +22,3 @@ import {

) {
if (!opts || opts.endpoint || opts.token) {
if (!opts || !opts.endpoint || !opts.token) {
return;

@@ -25,0 +25,0 @@ }

@@ -185,3 +185,3 @@ import { json, urlencoded } from 'body-parser';

this.configuration.backtrace &&
this.configuration.backtrace.remoteLog === true
this.configuration.backtrace.remoteLog !== false
) {

@@ -188,0 +188,0 @@ Logger.initializeBacktrace(this.configuration.backtrace);

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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