From 579f3e4c6b01f0e89fa6dc8c41a22330d4cb7b8f Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 9 Jan 2014 23:04:15 -0500 Subject: [PATCH] Change the order of init_logging's arguments. --- src/Main.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Main.hs b/src/Main.hs index d66f704..0a41318 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -183,7 +183,7 @@ main = do -- logging before the missing parameter checks below so that we can -- log the errors. let cfg = (def :: Configuration) `merge_optional` opt_config - init_logging (log_file cfg) (log_level cfg) (syslog cfg) + init_logging (log_level cfg) (log_file cfg) (syslog cfg) -- Check the optional config for missing required options. when (null $ OC.xml_files opt_config) $ do -- 2.43.2