Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-04-28 17:47:35 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-04-28 17:47:35 +0300
commitb46aad19c05c3a0f713b4ad9e3b4c771119df0d1 (patch)
tree421ccd8b1a58c38e4d82716a5fe715eb317a9d99
parentc648ddb9a1e94f84d4220c35207768862e9d19a8 (diff)
Libmv: Make ERROR a default printing severity
-rw-r--r--intern/libmv/intern/logging.cc4
1 files changed, 2 insertions, 2 deletions
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");