diff options
| -rw-r--r-- | src/rabbit.erl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl index 29cd145330..7095966ced 100644 --- a/src/rabbit.erl +++ b/src/rabbit.erl @@ -1040,8 +1040,10 @@ boot_error(_, {error, {cannot_log_to_file, LogFile, Reason}}) -> [LogFile, Reason]); boot_error(_, {error, {generate_config_file, Error}}) -> log_boot_error_and_exit(generate_config_file, - "~nConfig file generation failed:~n~s~n", - [Error]); + "~nConfig file generation failed:~n~s" + "In case the setting comes from a plugin, make sure that the plugin is enabled.~n" + "Alternatively remove the setting from the config.~n", + [Error]); boot_error(Class, Reason) -> LogLocations = log_locations(), log_boot_error_and_exit( |
