
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@unic/composite-logger
Advanced tools
Lightweight logger composite to help you debug your modules and disable when you go to production
Lightweight logger composite to help you debug your modules and disable when you go to production
$ npm install @unic/composite-logger
// ES6 Module
import logger from '@unic/composite-logger';
// CommomJS
const logger = require('@unic/composite-logger').default;
Creation
// Creation of object
const obj = logger('MyPrefix'); // Exposes .log() method
// Logging stuff
window.localStorage.debug = true; // If this is falsy, nothing will be logged to the console
obj.log('Hello', 'World'); // Outputs 'MyPrefix → Hello World' to the console
Create an object with a log method.
Returns: Object
- Returns an object with exposed .log() method
Param | Type | Default | Description |
---|---|---|---|
[prefix] | String | If given, provides a prefix for the logged content from the log method |
Example
// Basic form
const obj = logger('MyModule');
// No prefix
const obj = logger();
// Composition
const obj = Object.assign({}, object1, object2, logger('MyModule'));
Log function params to console (including given prefix from creation).
Info: window.localStorage.debug must be truthy to see output in the console
Returns: undefined
Param | Type | Default | Description |
---|---|---|---|
[params...] | Any | Pass any number of arguments you want to log to the console |
Example
// Creation
const obj = logger('MyModule');
window.localStorage.debug = true; // Enable logging to the console
obj.log('Hello', 'World', '!'); // Outputs 'MyModule → Hello World !' to the console
obj.log(1, 2, 3, 4); // Outputs 'MyModule → 1 2 3 4' to the console
A composite is a function or an object which can be used as is or to merged with another object. These composites are normally used in the factory/composition pattern.
Helpful Ressources:
Apache-2.0
FAQs
Lightweight logger composite to help you debug your modules and disable when you go to production
We found that @unic/composite-logger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.