/*
	Blackbird - Open Source JavaScript Logging Utility
	Author: G Scott Olson
	Web: http://blackbirdjs.googlecode.com/
	     http://www.gscottolson.com/blackbirdjs/
	Version: 1.0

	The MIT License - Copyright (c) 2008 Blackbird Project
*/
(function(){
    var NAMESPACE = 'log'; //keep synchronised with debug version
    
    window[ NAMESPACE ] = {
    show:function() {},
    toggle:function() {},
    resize:function() {},
    clear:function() {},
    move:function() {},
    debug:function( msg ) { },
    warn:function( msg ) { },
    info:function( msg ) { },
    error:function( msg ) { },
    profile:function( label ) {}
    };
})();
