From b46aad19c05c3a0f713b4ad9e3b4c771119df0d1 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Fri, 28 Apr 2017 16:47:35 +0200 Subject: Libmv: Make ERROR a default printing severity --- intern/libmv/intern/logging.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'intern/libmv') diff --git a/intern/libmv/intern/logging.cc b/intern/libmv/intern/logging.cc index 9b8adf09a97..863832cb72b 100644 --- a/intern/libmv/intern/logging.cc +++ b/intern/libmv/intern/logging.cc @@ -30,10 +30,10 @@ void libmv_initLogging(const char* argv0) { using LIBMV_GFLAGS_NAMESPACE::SetCommandLineOption; - // Make it so FATAL messages are always print into console. + // Make it so ERROR messages are always print into console. char severity_fatal[32]; snprintf(severity_fatal, sizeof(severity_fatal), "%d", - google::GLOG_FATAL); + google::GLOG_ERROR); google::InitGoogleLogging(argv0); SetCommandLineOption("logtostderr", "1"); SetCommandLineOption("v", "0"); -- cgit v1.2.3