[Bf-blender-cvs] [9ff88a596c2] master: Cycles: Lower default severity level to ERROR

Sergey Sharybin noreply at git.blender.org
Fri Apr 28 16:46:33 CEST 2017


Commit: 9ff88a596c2795d5fe2c1638b4b757df16d214f6
Author: Sergey Sharybin
Date:   Fri Apr 28 16:46:11 2017 +0200
Branches: master
https://developer.blender.org/rB9ff88a596c2795d5fe2c1638b4b757df16d214f6

Cycles: Lower default severity level to ERROR

===================================================================

M	intern/cycles/util/util_logging.cpp

===================================================================

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");




More information about the Bf-blender-cvs mailing list