You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

axe

Package Overview
Dependencies
Maintainers
1
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.0.7 to 3.0.8

4

lib/index.js

@@ -91,4 +91,4 @@ "use strict";

retry: 3,
showStack: boolean(process.env.SHOW_STACK || env !== 'production'),
showMeta: boolean(process.env.SHOW_META),
showStack: process.env.SHOW_STACK ? boolean(process.env.SHOW_STACK) : true,
showMeta: process.env.SHOW_META ? boolean(process.env.SHOW_META) : true,
silent: false,

@@ -95,0 +95,0 @@ logger: console,

{
"name": "axe",
"description": "Logging add-on to send logs over HTTP to your server in Node and Browser environments. Works with any logger! Chop up your logs consistently! Made for Cabin and Lad.",
"version": "3.0.7",
"version": "3.0.8",
"author": "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com)",

@@ -51,3 +51,3 @@ "ava": {

"cross-env": "^5.2.0",
"eslint": "5.12.0",
"eslint": "5.12.1",
"eslint-config-xo-lass": "^1.0.3",

@@ -63,3 +63,3 @@ "eslint-plugin-compat": "^2.6.3",

"nyc": "^13.1.0",
"pino": "^5.10.7",
"pino": "^5.10.8",
"remark-cli": "^6.0.1",

@@ -69,3 +69,3 @@ "remark-preset-github": "^0.0.13",

"signale": "^1.3.0",
"sinon": "^7.2.2",
"sinon": "^7.2.3",
"tinyify": "^2.5.0",

@@ -72,0 +72,0 @@ "xo": "^0.24.0"

@@ -247,4 +247,4 @@ # Axe

* `retry` (Number) - defaults to `3`, number of attempts to retry sending log over HTTP
* `showStack` (Boolean) - defaults to `true` in non-production environments (attempts to parse a boolean value from `process.env.SHOW_STACK`), whether or not to output a stack trace
* `showMeta` (Boolean) - defaults to `false` (attempts to parse a boolean value from `process.env.SHOW_META` – meaning you can pass a flag `SHOW_META=true node app.js` when needed for debugging), whether or not to output metadata to logger methods
* `showStack` (Boolean) - defaults to `true` (attempts to parse a boolean value from `process.env.SHOW_STACK`) - whether or not to output a stack trace
* `showMeta` (Boolean) - defaults to `true` (attempts to parse a boolean value from `process.env.SHOW_META` – meaning you can pass a flag `SHOW_META=true node app.js` when needed for debugging), whether or not to output metadata to logger methods
* `silent` (Boolean) - defaults to `false`, whether or not to suppress log output to console

@@ -251,0 +251,0 @@ * `logger` (Object) - defaults to `console` (with [console-polyfill][] added automatically), but you may wish to use a [custom logger](#custom-logger)

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc