1.0.3 • Published 12 years ago

Simplog v1.0.3

Weekly downloads
12
License
-
Repository
github
Last release
12 years ago

Simplog

Simplog is a simple logger interface for your Node.js app, exposing a convenient browser log client for when ssh isn't available.

Not meant for monitoring logs on distributed machines at this time.


Requirements

  • Socket.IO
  • Express
  • Jade

These need to be installed alongside Simplog, and are not bundled with your install.

Installation

sudo npm install simplog

or from Git

sudo npm install https://github.com/sterlingwes/Simplog/tarball/master

Usage

var express = require('express'),
	http	= require('http'),
	app		= express(),
	server	= http.createServer(app);
	server.listen(80);
	
var	io		= require('socket.io').listen(server),
	s		= require('Simplog');

Note that on account of this issue with Connect/Express & Socket.IO, we require http vs. app.listen().

Configure express to serve simplog browser client assets:

app.configure(function() {
	app.use(express.static(__dirname + '/node_modules/Simplog/public'));
});

Initialize Simplog, referencing your log files and socket.io.

s.init({
	serverlog:	'server.log',
    errorlog:   'error.log'
}, io);

Finally, setup the route to your browser client:

app.get('/log', s.render);

Now, run your app and split your log output:

sudo node server.js 1>>server.log 2>>error.log

Try using the Simplog logger in you application:

s.log('Message'); 					// defaults to debug level 1, no label/namespace
s.log('Message',2,'MainModule'); 	// info level 2, MainModule as label
s.log('Message','MainModule'); 		// defaults to debug level
s.log('Message',3);					// error level 3, no label
console.log('Message');				// this and sys.log works fine (no formatting)

That's it! More thorough API documentation to follow.

Known Issues / To-do

  • Browser client does not render exception traces gracefully
  • Does not support distributed logging
  • Does not detect exceptions / crashes (providing notifications)

License

(The MIT License)

Copyright (c) 2012 Wes Johnson

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

1.0.3

12 years ago

1.0.2

12 years ago

1.0.1

12 years ago

1.0.0

12 years ago