Disable verbose and debug for production

develop
mj-saunders 2018-06-05 08:30:27 +00:00
parent 9fd16a6256
commit bd997128e3
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ use RSSTootalizer::User;
use RSSTootalizer::Entry;
use RSSTootalizer::DB;
my $VERBOSE = 1;
my $DEBUG = 1;
my $VERBOSE = 0;
my $DEBUG = 0;
our $config = "";
open CONFIG, "rsstootalizer.conf.json" or die "Cannot open rsstootalizer.conf.json";