From d03b21bec68401be4cabae6a0386883ad885c373 Mon Sep 17 00:00:00 2001 From: Jacob Nelson Date: Tue, 12 Jan 2016 14:15:58 -0600 Subject: [PATCH] switch off verbose output by default (fixes #263) --- system/Grappa.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/Grappa.cpp b/system/Grappa.cpp index 7718c5ade..dcc930c76 100644 --- a/system/Grappa.cpp +++ b/system/Grappa.cpp @@ -374,7 +374,7 @@ void Grappa_init( int * argc_p, char ** argv_p[], int64_t global_memory_size_byt std::cout << "Error setting GLOG_logtostderr default value"; exit(1); } - if( 0 != setenv("GLOG_v", "1", DONT_OVERWRITE_ENV) ) { + if( 0 != setenv("GLOG_v", "0", DONT_OVERWRITE_ENV) ) { std::cout << "Error setting GLOG_v default value"; exit(1); } @@ -382,7 +382,7 @@ void Grappa_init( int * argc_p, char ** argv_p[], int64_t global_memory_size_byt // Most of the time glog knows about gflags, and so these are used // instead: FLAGS_logtostderr = 1; - FLAGS_v = 1; + FLAGS_v = 0; // set Google profiler sample rate setenv("CPUPROFILE_FREQUENCY", "50", DONT_OVERWRITE_ENV);