JavaScript wrapper for console debugger also allows sending of logs over a WebSocket connection.
##Usage##
Basic functionality is pretty much the same as console.
Debug.log('Something');
Debug.debug('Debug statement');
Debug.info('Info statement');
Debug.warn('Warning here');
Debug.error('Error here');
Debug.assert(true, 'If assert is false');Connection over WebSocket using an IP address.
Debug.connect('10.1.10.1');Set the minimum debug level to help limit spam.
// Show only logs that are a warning or higher
Debug.minLogLevel(Debug.WARN);Here are the log levels in order from lowest to highest importance.
Debug.GENERALDebug.DEBUGDebug.INFODebug.WARNDebug.ERROR
##Installation##
CloudKid Debug can be install using Bower.
bower install cloudkid-debug##License##
Copyright (c) 2014 CloudKid
Released under the MIT License.