Console.prototype.trace = function() {
// TODO probably can to do this better with V8's debug object once that is
// expo
sed.
var err = new Error;
err.name = 'Trace';
err.message = util.format.apply(this, arguments);
Error.captureStackTrace(err, arguments.callee);
this.error(err.stack);
};