@@ -52,7 +52,6 @@ pub enum Notification<'a> {
52
52
Error ( String ) ,
53
53
UsingCurl ,
54
54
UsingReqwest ,
55
- CreatingRoot ( & ' a Path ) ,
56
55
CreatingFile ( & ' a Path ) ,
57
56
SetAutoInstall ( & ' a str ) ,
58
57
SetDefaultToolchain ( Option < & ' a ToolchainName > ) ,
@@ -115,7 +114,7 @@ impl Notification<'_> {
115
114
| UsingCurl
116
115
| UsingReqwest => NotificationLevel :: Debug ,
117
116
Error ( _) => NotificationLevel :: Error ,
118
- CreatingRoot ( _ ) | CreatingFile ( _) => NotificationLevel :: Debug ,
117
+ CreatingFile ( _) => NotificationLevel :: Debug ,
119
118
ToolchainDirectory ( _)
120
119
| LookingForToolchain ( _)
121
120
| InstallingToolchain ( _)
@@ -245,7 +244,6 @@ impl Display for Notification<'_> {
245
244
ResumingPartialDownload => write ! ( f, "resuming partial download" ) ,
246
245
UsingCurl => write ! ( f, "downloading with curl" ) ,
247
246
UsingReqwest => write ! ( f, "downloading with reqwest" ) ,
248
- CreatingRoot ( path) => write ! ( f, "creating temp root: {}" , path. display( ) ) ,
249
247
CreatingFile ( path) => write ! ( f, "creating temp file: {}" , path. display( ) ) ,
250
248
SetAutoInstall ( auto) => write ! ( f, "auto install set to '{auto}'" ) ,
251
249
SetDefaultToolchain ( None ) => write ! ( f, "default toolchain unset" ) ,
0 commit comments