Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 808 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 808 Bytes

ilogger

###Helper web logger for developers and testers if there is no console.

Helps tracking js logs via ui. It is useful if there is no browser console. (like PhoneGap, Cordova hybrid apps)

Every log kept in a single line for user experience, just scroll to see overflowing logs.

Prerequisites: JQuery

Usage: see example folder

<link href="dist/ilogger.css" rel="stylesheet">
<script src="dist/ilogger.js"></script>
$(document).ready(function() {
	ilog.init();
	
	ilog.log('hello world');
	ilog.log('im a cool log');
	ilog.log('this is another long log for scrolling..');
});

alt tag alt tag