Replace quiet setting with verbose setting

Refaults to false, so the users get less output by default
This commit is contained in:
Alex LaFroscia 2015-01-24 12:25:28 -05:00
parent 39d9ee3416
commit cc8cca2fa1

2
gun.js
View File

@ -193,7 +193,7 @@
if(!gun || !gun.__ || !gun.__.opt){
return console.log.apply(console, arguments);
}
if(gun.__.opt.quiet){ return }
if(!gun.__.opt.verbose){ return }
return console.log.apply(console, arguments);
}
}(Gun));