
Security News
Security Community Slams MIT-linked Report Claiming AI Powers 80% of Ransomware
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.
@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!
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
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.

Research
/Security News
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.