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:
Diffstat (limited to 'source/blender/editors/space_userpref/userpref_ops.c')
-rw-r--r--source/blender/editors/space_userpref/userpref_ops.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/source/blender/editors/space_userpref/userpref_ops.c b/source/blender/editors/space_userpref/userpref_ops.c
index 0b2bda1abd3..e58f40ebc90 100644
--- a/source/blender/editors/space_userpref/userpref_ops.c
+++ b/source/blender/editors/space_userpref/userpref_ops.c
@@ -170,26 +170,19 @@ void USERPREF_restore_global_log_settings(bool use_command_line_mask)
}
if (!(mask & ARGS_LOG_FILE)) {
CLG_use_stdout_set(U.log_use_stdout);
+ CLG_file_output_path_set(U.log_output_file_path);
}
/*
if (!(mask & ARGS_LOG_DISABLE_ALWAYS_SHOW_WARNINGS)) {
CLG_always_show_warnings_set(U.log_always_show_warnings);
}
*/
- if (!(mask & ARGS_VERBOSE)) {
- CLG_file_output_path_set(U.log_output_file_path);
- }
if (!(mask & ARGS_DEBUG)) {
- /* TODO (grzelins) we need proper setter, not only enabler */
- G_debug_enable(U.debug_flags);
G.debug = U.debug_flags;
}
if (!(mask & ARGS_DEBUG_VALUE)) {
G.debug_value = U.debug_value;
}
- if (!(mask & ARGS_VERBOSE)) {
- G_verbose_set(U.verbose);
- }
}
void USERPREF_restore_factory_log_settings()