commit
04f9f57875
@ -639,7 +639,7 @@ History.prototype.requiresUpdate = function()
|
|||||||
|
|
||||||
History.prototype.getHistoryRequestRange = function()
|
History.prototype.getHistoryRequestRange = function()
|
||||||
{
|
{
|
||||||
if( this._items.length < 5 )
|
if( this._items.length < 2 )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
var blocks = _.pluck( this._items, 'height' );
|
var blocks = _.pluck( this._items, 'height' );
|
||||||
|
@ -31,6 +31,15 @@ var typeColors = {
|
|||||||
'PIN': chalk.reset.bold.yellow,
|
'PIN': chalk.reset.bold.yellow,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
var verbosity = [
|
||||||
|
[],
|
||||||
|
['error'],
|
||||||
|
['error', 'warn', 'success'],
|
||||||
|
['info', 'error', 'warn', 'success', 'time', 'timeEnd']
|
||||||
|
];
|
||||||
|
|
||||||
|
var ENV_VERBOSITY = process.env.VERBOSITY || 2;
|
||||||
|
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
name: "info",
|
name: "info",
|
||||||
@ -102,6 +111,9 @@ var typeColors = {
|
|||||||
|
|
||||||
console[item.name] = function ()
|
console[item.name] = function ()
|
||||||
{
|
{
|
||||||
|
if(verbosity[ENV_VERBOSITY].indexOf(fnName) === -1)
|
||||||
|
return false;
|
||||||
|
|
||||||
var args = Array.prototype.slice.call(arguments);
|
var args = Array.prototype.slice.call(arguments);
|
||||||
var type = null,
|
var type = null,
|
||||||
sign,
|
sign,
|
||||||
|
Loading…
Reference in New Issue
Block a user