@@ -69,19 +69,25 @@ public override async Task<bool> FilterAsync(SyncDirection direction, OperationT
6969
7070 if ( await new ZipFilter ( ) . FilterAsync ( direction , operationType , path , itemType , newPath ) )
7171 {
72- LogDebug ( $ "{ nameof ( ZipFilter ) } filtered { operationType } ", path , newPath , operationContext ) ;
72+ Logger . LogDebug ( $ "{ nameof ( ZipFilter ) } filtered { operationType } ", path , newPath , operationContext ) ;
7373 return true ;
7474 }
7575
7676 if ( await new MsOfficeFilter ( ) . FilterAsync ( direction , operationType , path , itemType , newPath ) )
7777 {
78- LogDebug ( $ "{ nameof ( MsOfficeFilter ) } filtered { operationType } ", path , newPath , operationContext ) ;
78+ Logger . LogDebug ( $ "{ nameof ( MsOfficeFilter ) } filtered { operationType } ", path , newPath , operationContext ) ;
7979 return true ;
8080 }
8181
8282 if ( await new AutoCadFilter ( ) . FilterAsync ( direction , operationType , path , itemType , newPath ) )
8383 {
84- LogDebug ( $ "{ nameof ( AutoCadFilter ) } filtered { operationType } ", path , newPath , operationContext ) ;
84+ Logger . LogDebug ( $ "{ nameof ( AutoCadFilter ) } filtered { operationType } ", path , newPath , operationContext ) ;
85+ return true ;
86+ }
87+
88+ if ( await new ErrorStatusFilter ( ) . FilterAsync ( direction , operationType , path , itemType , newPath ) )
89+ {
90+ Logger . LogDebug ( $ "{ nameof ( ErrorStatusFilter ) } filtered { operationType } ", path , newPath , operationContext ) ;
8591 return true ;
8692 }
8793
0 commit comments