# HG changeset patch # User Kim Alvefur # Date 1523712188 -7200 # Node ID 857d8f38a0107d4692dd2b476430a169b7de468c # Parent ca40f9a5751a37909160f96d6d252b0ce7007d29 util.startup: Force console logging before initializing logging (see 2fdeb979cc7c) diff -r ca40f9a5751a -r 857d8f38a010 util/startup.lua --- a/util/startup.lua Fri Mar 09 18:22:38 2018 +0100 +++ b/util/startup.lua Sat Apr 14 15:23:08 2018 +0200 @@ -505,6 +505,7 @@ function startup.prosodyctl() startup.init_global_state(); startup.read_config(); + startup.force_console_logging(); startup.init_logging(); startup.setup_plugindir(); startup.setup_datadir(); @@ -512,7 +513,6 @@ startup.read_version(); startup.switch_user(); startup.check_dependencies(); - startup.force_console_logging(); startup.log_dependency_warnings(); startup.check_unwriteable(); startup.load_libraries();