pub type LoggingResult<T> = AppResult<T>;
Result type returned by fallible logging setup APIs.
pub enum LoggingResult<T> { Ok(T), Err(AppError), }
Contains the success value
Contains the error value