Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
LogCafe.js is a logging framework to support browser application logging. (amd-style and node.js support)
LogCafe.js is a logging framework to support browser application logging. (amd-style and node.js support)
$ node
> var LogCafe = require('logcafe');
> var logCafe = new LogCafe();
> var conf = { // configure
... level: 'DEBUG',
... separator: ', '
... };
> logCafe.setConfigure(conf); // set configure
{ loggers: {},
config: { level: 'DEBUG', separator: ', ' } }
> var log = logCafe.getLogger('logcafe'); // set Logger
> log.info('logger succesfully got', 'test'); // output log
[info][logcafe] logger succesfully got, test (......:xx:yy)
var logCafe = new LogCafe();
var conf = { // configure
level: 'DEBUG',
separator: ', '
};
logCafe.setConfigure(conf); // set configure
var log = logCafe.getLogger('logcafe'); // set Logger
log.info('logger succesfully got', 'test'); // output log
>> [info][logcafe] logger succesfully got, test (......:xx:yy)
{
level: 'DEBUG', // OFF|TRACE|DEBUG|INFO|WARN|ERROR
separator: ', ' // Consolidation of argument, it is a separator.
excludes: [] // Exclude category forward match
}
dependence) node.js
$ npm install .
$ make
$ open ./spec/all.html
$ npm install . # deps install
$ make test
info: checking node_modules.
if [ ! -d ./node_modules ]; then npm install .; else exit 0; fi
info: testing start.
./node_modules/mocha/bin/mocha test/
[info][logcafe] logger succesfully got (/Users/fkei/repos/logcafe.js/test/test.logcafe.js:28:17)
․
1 test complete (16 ms)
@see https://github.com/CyberAgent/logcafe.js/blob/master/Changelog
CyberAgent, Inc. All rights reserved.
MIT @see https://github.com/CyberAgent/logcafe.js/blob/master/LICENSE
FAQs
LogCafe.js is a logging framework to support browser application logging. (amd-style and node.js support)
We found that logcafe 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.