New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cf-logs

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cf-logs - npm Package Compare versions

Comparing version 0.0.6 to 1.0.0

16

lib/index.js

@@ -16,4 +16,2 @@ var winston = require('winston');

showNamespace: false,
env_module: "",
showRequestId: false,
level: "debug",

@@ -24,2 +22,3 @@ namespaces: "codefresh,codefresh:*",

baseNamespace: "codefresh",
fields: {},
};

@@ -160,8 +159,11 @@

}
if (globalOptions.env_module){
data.env_module = globalOptions.env_module;
if(globalOptions.fields){
_.map(globalOptions.fields, (value, key) => {
if(_.isFunction(value)){
data[key] = value();
} else {
data[key] = value;
}
});
}
if (globalOptions.showRequestId && domain.active && domain.active.requestId){
data.requestId = domain.active.requestId;
}
oldArguments.push(data);

@@ -168,0 +170,0 @@ return oldArguments;

{
"name": "cf-logs",
"version": "0.0.6",
"version": "1.0.0",
"description": "codefresh logs",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

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