Improve error messages expanding single-file#58557
Conversation
|
Tagging subscribers to this area: @agocke, @vitek-karas, @VSadov Issue DetailsFollowup to the discussion on this issue: #53346 (comment) In some cases if
|
| } | ||
| else | ||
| { | ||
| trace::error(_X("Failed to determine default extraction location. Environment variable '$HOME' is not defined.")); |
There was a problem hiding this comment.
Thanks @am11. There's #58464 which is basically tracking potential improvements in where to put the files. I think using other means to obtain the default location falls into that category as well. I wanted to keep this one very simple, solely as a diagnostics improvement (not changing actual functional behavior).
|
@VSadov could you please take a look? |
Followup to the discussion on this issue: #53346 (comment)
In some cases if
$HOMEis not defined the extraction doesn't provide helpful error message. This change improves the errors by exactly specifying what failed. Added a couple of tests for this as well.