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