
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
@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.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.