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
path: root/intern
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-04-28 17:46:11 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-04-28 17:46:30 +0300
commit9ff88a596c2795d5fe2c1638b4b757df16d214f6 (patch)
treeaaf314a394de1a85c2cf23de954ea42e218ade3d /intern
parentaa88796a6cb6cb65b87508d87c51f1d58234f2ee (diff)
Cycles: Lower default severity level to ERROR
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/util/util_logging.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/util/util_logging.cpp b/intern/cycles/util/util_logging.cpp
index a5a3bd34fff..d97ed01aebc 100644
--- a/intern/cycles/util/util_logging.cpp
+++ b/intern/cycles/util/util_logging.cpp
@@ -33,7 +33,7 @@ void util_logging_init(const char *argv0)
/* Make it so FATAL 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");