syslog-like-console
v1.0.3
Published
node-syslog wrapper with same methods than console
Downloads
1
Readme
syslog-like-console
node-syslog wrapper with same methods than console
Installation
Download node at nodejs.org and install it, if you haven't already.
npm i --save syslog-like-console
Usage
// Instance the logger
// params are log name and mask level
var log = require('syslog-like-console')('my-log-name', 'LOG_INFO');
log.info('tag', 'message');
log.info('message');
log.log('tag', 'message');
log.error('tag', 'message');
log.warn('tag', 'message');
log.debug('tag', 'message');
Tests
npm install
npm test
Dependencies
- node-syslog: Node module to support sending messages to syslog daemon
Dev Dependencies
- eslint: An AST-based pattern checker for JavaScript.
License
Copyright 2015 Irontec SL
Licensed under the EUPL, Version 1.1 or - as soon they will be approved by the European
Commission - subsequent versions of the EUPL (the "Licence"); You may not use this work
except in compliance with the Licence.
You may obtain a copy of the Licence at:
http://ec.europa.eu/idabc/eupl.html
Unless required by applicable law or agreed to in writing, software distributed under
the Licence is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF
ANY KIND, either express or implied. See the Licence for the specific language
governing permissions and limitations under the Licence.