From cc8cca2fa1cf7a90610bb3079536fce3cedce3a1 Mon Sep 17 00:00:00 2001 From: Alex LaFroscia Date: Sat, 24 Jan 2015 12:25:28 -0500 Subject: [PATCH] Replace `quiet` setting with `verbose` setting Refaults to false, so the users get less output by default --- gun.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gun.js b/gun.js index 1cd5d130..da8c1013 100644 --- a/gun.js +++ b/gun.js @@ -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));