@@ -52,7 +52,6 @@ pub enum Notification<'a> {
5252 Error ( String ) ,
5353 UsingCurl ,
5454 UsingReqwest ,
55- CreatingFile ( & ' a Path ) ,
5655 SetAutoInstall ( & ' a str ) ,
5756 SetDefaultToolchain ( Option < & ' a ToolchainName > ) ,
5857 SetOverrideToolchain ( & ' a Path , & ' a str ) ,
@@ -114,7 +113,6 @@ impl Notification<'_> {
114113 | UsingCurl
115114 | UsingReqwest => NotificationLevel :: Debug ,
116115 Error ( _) => NotificationLevel :: Error ,
117- CreatingFile ( _) => NotificationLevel :: Debug ,
118116 ToolchainDirectory ( _)
119117 | LookingForToolchain ( _)
120118 | InstallingToolchain ( _)
@@ -244,7 +242,6 @@ impl Display for Notification<'_> {
244242 ResumingPartialDownload => write ! ( f, "resuming partial download" ) ,
245243 UsingCurl => write ! ( f, "downloading with curl" ) ,
246244 UsingReqwest => write ! ( f, "downloading with reqwest" ) ,
247- CreatingFile ( path) => write ! ( f, "creating temp file: {}" , path. display( ) ) ,
248245 SetAutoInstall ( auto) => write ! ( f, "auto install set to '{auto}'" ) ,
249246 SetDefaultToolchain ( None ) => write ! ( f, "default toolchain unset" ) ,
250247 SetDefaultToolchain ( Some ( name) ) => write ! ( f, "default toolchain set to '{name}'" ) ,
0 commit comments