
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@ui5/logger
Advanced tools
@ui5/logger is a logging library designed for use with the UI5 framework. It provides a simple and flexible way to log messages at different levels (e.g., error, warn, info, verbose, silly) and supports custom loggers and transports.
Basic Logging
This feature allows you to create a logger instance and log messages at different levels such as info and error.
const { getLogger } = require('@ui5/logger');
const log = getLogger('myLogger');
log.info('This is an info message');
log.error('This is an error message');
Custom Log Levels
This feature allows you to define custom log levels and use them in your application.
const { getLogger, createLogger } = require('@ui5/logger');
const customLogger = createLogger({
transports: [
new (require('@ui5/logger').transports.Console)({
level: 'custom'
})
]
});
const log = getLogger('customLogger');
log.custom('This is a custom log level message');
Custom Transports
This feature allows you to create custom transports for logging, such as logging to the console with a specific format.
const { getLogger, createLogger, transports } = require('@ui5/logger');
const customTransport = new transports.Console({
level: 'info',
format: require('@ui5/logger').formats.simple()
});
const customLogger = createLogger({
transports: [customTransport]
});
const log = getLogger('customLogger');
log.info('This is an info message with a custom transport');
Winston is a versatile logging library for Node.js that supports multiple transports, log levels, and formats. It is highly configurable and widely used in the Node.js community. Compared to @ui5/logger, Winston offers more flexibility and a larger ecosystem of plugins and extensions.
Bunyan is a simple and fast JSON logging library for Node.js. It is designed for high-performance logging and provides features like log streams and serializers. Bunyan is more focused on JSON logging compared to @ui5/logger, which offers a more general-purpose logging solution.
Pino is a low-overhead logging library for Node.js that focuses on performance. It provides fast logging with minimal impact on application performance. Pino is suitable for applications where performance is critical, whereas @ui5/logger provides a more feature-rich logging experience.
Providing logging functionality for all UI5 Tooling modules and extensions.
Features log levels and rendering of a progress bar.
Part of UI5 Tooling
General UI5 Tooling documentation can be found here: sap.github.io/ui5-tooling
The UI5 Logger API Reference can be found here: @ui5/logger
Please check our Contribution Guidelines.
Please follow our Contribution Guidelines on how to report an issue.
Please report issues in the main UI5 Tooling repository.
See CHANGELOG.md.
[v4.0.1] - 2024-07-17
<a name="v4.0.0"></a>
FAQs
UI5 Tooling - Internal Logger
The npm package @ui5/logger receives a total of 302,081 weekly downloads. As such, @ui5/logger popularity was classified as popular.
We found that @ui5/logger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.