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:
Diffstat (limited to 'intern')
-rw-r--r--intern/libmv/libmv/logging/logging.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/intern/libmv/libmv/logging/logging.h b/intern/libmv/libmv/logging/logging.h
index ce7f3201516..0f4f99e3895 100644
--- a/intern/libmv/libmv/logging/logging.h
+++ b/intern/libmv/libmv/logging/logging.h
@@ -23,6 +23,20 @@
#include <glog/logging.h>
-#define LG LOG(INFO)
+// Note on logging severity and verbosity level.
+//
+// Reserve LOG(INFO) for messages which are always to be put to log and don't
+// use the INFO severity for the debugging/troubleshooting type of messages.
+// Some reasoning behind:
+//
+// - Library integration would want to disable "noisy" messages coming from
+// algorithms.
+//
+// - It is not possible to disable INFO severity entirely: there is enough
+// of preparation being done for the message stream. What is even worse
+// is that such stream preparation causes measurable time spent in spin
+// lock, ruining multi-threading.
+
+#define LG VLOG(1)
#endif // LIBMV_LOGGING_LOGGING_H