diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/vyconfd.ml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vyconfd.ml b/src/vyconfd.ml index 3f80c1d..120990f 100644 --- a/src/vyconfd.ml +++ b/src/vyconfd.ml @@ -29,7 +29,8 @@ let load_config path = match result with | Result.Ok cfg -> cfg | Result.Error err -> - Lwt_log.fatal (Printf.sprintf "Could not load the configuration file %s" err); exit 1 + Lwt_log.fatal (Printf.sprintf "Could not load the configuration file %s" err) |> Lwt.ignore_result; + exit 1 let setup_logger daemonize log_file template = (* |