Print a warning when config cannot be found #35
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This modest patch presents a warning to the user whenever configuration cannot be found in the expected locations. The motivation for this stems from being frustrated by
and the subsequent giant pile of stack trace when the file is missing. In general, I think I would prefer a much better error message when config value is missing i.e. it couldn't be found because the configuration source was missing vs. it couldn't be found because it wasn't specified in the source. These are distinct situations and warrant distinct messages.
I think this could easily be improved by having
load-configannotate the return value of(read-config source)with meta indicating it's source and subsequently providing a helper function to access that information. These additions would be enough to produce a better error message indefconfig.I'm happy to revise and submit these proposals as a proper patch provided the reception is positive. The changes are safe, simple and would not result in breakage.