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/cycles/util/util_logging.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/intern/cycles/util/util_logging.cpp b/intern/cycles/util/util_logging.cpp
index 783a372e59f..cc1e328ba6d 100644
--- a/intern/cycles/util/util_logging.cpp
+++ b/intern/cycles/util/util_logging.cpp
@@ -28,13 +28,17 @@ CCL_NAMESPACE_BEGIN
static bool is_verbosity_set()
{
- using CYCLES_GFLAGS_NAMESPACE::GetCommandLineOption;
+#ifdef WITH_CYCLES_LOGGING
+using CYCLES_GFLAGS_NAMESPACE::GetCommandLineOption;
std::string verbosity;
if (!GetCommandLineOption("v", &verbosity)) {
return false;
}
return verbosity != "0";
+#else
+ return false;
+#endif
}
void util_logging_init(const char *argv0)