@@ -37,7 +37,6 @@ pub enum Notification<'a> {
37
37
StrayHash ( & ' a Path ) ,
38
38
SignatureInvalid ( & ' a str ) ,
39
39
RetryingDownload ( & ' a str ) ,
40
- CreatingDirectory ( & ' a str , & ' a Path ) ,
41
40
LinkingDirectory ( & ' a Path , & ' a Path ) ,
42
41
CopyingDirectory ( & ' a Path , & ' a Path ) ,
43
42
RemovingDirectory ( & ' a str , & ' a Path ) ,
@@ -124,8 +123,7 @@ impl Notification<'_> {
124
123
NonFatalError ( _) => NotificationLevel :: Error ,
125
124
SignatureInvalid ( _) => NotificationLevel :: Warn ,
126
125
SetDefaultBufferSize ( _) => NotificationLevel :: Trace ,
127
- CreatingDirectory ( _, _)
128
- | RemovingDirectory ( _, _)
126
+ RemovingDirectory ( _, _)
129
127
| LinkingDirectory ( _, _)
130
128
| CopyingDirectory ( _, _)
131
129
| DownloadingFile ( _, _)
@@ -261,9 +259,6 @@ impl Display for Notification<'_> {
261
259
}
262
260
SignatureInvalid ( url) => write ! ( f, "Signature verification failed for '{url}'" ) ,
263
261
RetryingDownload ( url) => write ! ( f, "retrying download for '{url}'" ) ,
264
- CreatingDirectory ( name, path) => {
265
- write ! ( f, "creating {} directory: '{}'" , name, path. display( ) )
266
- }
267
262
Error ( e) => write ! ( f, "error: '{e}'" ) ,
268
263
LinkingDirectory ( _, dest) => write ! ( f, "linking directory from: '{}'" , dest. display( ) ) ,
269
264
CopyingDirectory ( src, _) => write ! ( f, "copying directory from: '{}'" , src. display( ) ) ,
0 commit comments