/**
** Copyrights reserved. June 2011. Propritery content of Prologix Technologies, protected by International laws.
** Unautorized use of the whole or any part of the code will be procecuted under international code protection act.
**
**/
if ('undefined' === typeof PROLOGIX || null === PROLOGIX) {
	PROLOGIX = {
	};
}

/**
* PROLOGIX LogManager namespace/code
*/
if ('undefined' === typeof PROLOGIX.LogManager || null === PROLOGIX.LogManager) {
	PROLOGIX.LogManager = {
	};
}

PROLOGIX.LogManager.logInfo = function(message){
	if('undefined' !== typeof console && null !== console){
		console.log(message);
	}
};
