
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
@liquicode/lib-logger
Advanced tools
An easy and flexible logging system. Log to console, files, etc. Now with colors!
An easy and flexible logging system. Log to console, files, etc. Now with colors!
Traditional installation for server-side platforms (nodejs/phantomjs)
npm install @liquicode/lib-logger
or: Traditional installation for client-side platforms (browser)
<bower install not yet supported>
or: Clone the source code
git clone https://github.com/agbowlin/lib-logger.git
or: Download the latest source code
https://github.com/agbowlin/lib-logger/archive/master.zip
const LIB_LOGGER = require( '@liquicode/lib-logger' );
From the library reference LIB_LOGGER
, you can create specific loggers for
different output devices or a generalized logger to render log messages on
multiple devices.
lib-logger
works with several platforms.
// Reference the library.
const LIB_LOGGER = require( '@liquicode/lib-logger' );
// Call NewShellLogger() to get a logger object that prints message to the console.
let Logger = LIB_LOGGER.NewShellLogger( 'My Optional Log Group Name' );
// Log something
Logger.LogInfo( 'Hello, World!' );
// Reference the library.
// (installed via 'bower install liqui-logger' ?)
const LIB_LOGGER = require('bower_components/liqui-logger/js/logger');
// Call NewConsoleLogger() to get a logger object that prints message to the console.
let Logger = LIB_LOGGER.NewConsoleLogger( 'My Optional Log Group Name' );
// Log something
Logger.LogInfo( 'Hello, World!' );
Logger.info( 'Hello, Again!' );
group date time ms severity message
| | | | | |
v v v v v v
==========================================
| Test Group | 2017-01-12 | 03:42:37 | 1547 | TRACE | This is a Trace message.
| Test Group | 2017-01-12 | 03:42:37 | 1548 | DEBUG | This is a Debug message.
| Test Group | 2017-01-12 | 03:42:37 | 1549 | INFO | This is an Info message.
| Test Group | 2017-01-12 | 03:42:37 | 1551 | WARN | This is a Warn message.
| Test Group | 2017-01-12 | 03:42:37 | 1552 | ERROR | This is an Error message.
==========================================
| Test Group | 2017-01-12 | 03:42:37 | 1559 | INFO | Here is some extra data:
{
"Field1": "Foo", <--- extra data
"Field2": "Bar"
}
========================================== <--- separator line
FAQs
An easy and flexible logging system. Log to console, files, etc. Now with colors!
The npm package @liquicode/lib-logger receives a total of 5 weekly downloads. As such, @liquicode/lib-logger popularity was classified as not popular.
We found that @liquicode/lib-logger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.