### What? Allows configuration of the log level based on the error being thrown and also downgrades common errors to be info instead of error by default. ### Why? Currently all errors result in logger.error being called which can polute the logs with junk that is normal and doesn't need attention. ### How? Adds a config property called `loggingLevels` that is used to override the default log levels based on the name of the error being thrown. Sanitize config will provide the defaulted 'info' level errors which can be overriden in the config. Before  After 