From e71e723f895a2864fab023f3386086872b8bb60f Mon Sep 17 00:00:00 2001 From: Eric Callahan Date: Sun, 31 Oct 2021 19:17:25 -0400 Subject: [PATCH] confighelper: attempt to clarify unparsed config warnings Signed-off-by: Eric Callahan --- moonraker/confighelper.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/moonraker/confighelper.py b/moonraker/confighelper.py index c40bead..bdb34cf 100644 --- a/moonraker/confighelper.py +++ b/moonraker/confighelper.py @@ -153,10 +153,10 @@ class ConfigHelper: for opt, val in self.config.items(sect): if opt not in parsed_opts: self.server.add_warning( - f"Invalid config option '{opt}: {val}' detected in " - f"section [{sect}]. To solve this issue check your " - "moonraker config. This option is invalid and has to " - "be deleted or fixed. In the future this will result " + f"Unparsed config option '{opt}: {val}' detected in " + f"section [{sect}]. This may be an option no longer " + "available or could be the result of a module that " + "failed to load. In the future this will result " "in a startup error.") def get_configuration(server: Server,