Skip to content

Commit

Permalink
Use early_error
Browse files Browse the repository at this point in the history
  • Loading branch information
camelid committed Nov 24, 2020
1 parent 8ad1a1c commit 173a7db
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions compiler/rustc_driver/src/lib.rs
Expand Up @@ -1288,12 +1288,19 @@ pub fn init_env_logger(env: &str) {
"always" => true,
"never" => false,
"auto" => stdout_isatty(),
_ => panic!("invalid log color value '{}': expected one of always, never, or auto", value),
_ => early_error(
ErrorOutputType::default(),
&format!(
"invalid log color value '{}': expected one of always, never, or auto",
value
),
),
},
Err(std::env::VarError::NotPresent) => stdout_isatty(),
Err(std::env::VarError::NotUnicode(_value)) => {
panic!("non-unicode log color value: expected one of always, never, or auto")
}
Err(std::env::VarError::NotUnicode(_value)) => early_error(
ErrorOutputType::default(),
"non-Unicode log color value: expected one of always, never, or auto",
),
};
let filter = tracing_subscriber::EnvFilter::from_env(env);
let layer = tracing_tree::HierarchicalLayer::default()
Expand Down Expand Up @@ -1324,7 +1331,7 @@ pub fn main() -> ! {
arg.into_string().unwrap_or_else(|arg| {
early_error(
ErrorOutputType::default(),
&format!("Argument {} is not valid Unicode: {:?}", i, arg),
&format!("argument {} is not valid Unicode: {:?}", i, arg),
)
})
})
Expand Down

0 comments on commit 173a7db

Please sign in to comment.