2012-08-11 08:14:56 +00:00
|
|
|
/*global console */
|
2012-07-19 00:11:26 +00:00
|
|
|
/**
|
|
|
|
* VisualEditor debugging methods.
|
2012-07-19 21:25:16 +00:00
|
|
|
*
|
2012-07-19 00:11:26 +00:00
|
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
2012-06-18 20:30:14 +00:00
|
|
|
/**
|
|
|
|
* Logs data to the console.
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
* @method
|
|
|
|
* @param {Mixed} [...] Data to log
|
|
|
|
*/
|
2012-08-11 08:14:56 +00:00
|
|
|
ve.log = window.console && console.log ?
|
|
|
|
ve.bind( console.log, console ) : ve.log;
|
2012-06-18 20:30:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Logs an object to the console.
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
* @method
|
|
|
|
* @param {Object} obj Object to log
|
|
|
|
*/
|
2012-08-11 08:14:56 +00:00
|
|
|
ve.dir = window.console && console.dir ?
|
|
|
|
ve.bind( console.dir, console ) : ve.dir;
|