@@ -1206,9 +1206,6 @@ internal string WrapToCurrentWindowWidth(string text)
12061206 /// </exception>
12071207 public override void WriteDebugLine ( string message )
12081208 {
1209- // don't lock here as WriteLine is already protected.
1210- message = HostUtilities . RemoveGuidFromMessage ( message , out _ ) ;
1211-
12121209 // We should write debug to error stream only if debug is redirected.)
12131210 if ( _parent . ErrorFormat == Serialization . DataFormat . XML )
12141211 {
@@ -1266,9 +1263,6 @@ public override void WriteInformation(InformationRecord record)
12661263 /// </exception>
12671264 public override void WriteVerboseLine ( string message )
12681265 {
1269- // don't lock here as WriteLine is already protected.
1270- message = HostUtilities . RemoveGuidFromMessage ( message , out _ ) ;
1271-
12721266 // NTRAID#Windows OS Bugs-1061752-2004/12/15-sburns should read a skin setting here...)
12731267 if ( _parent . ErrorFormat == Serialization . DataFormat . XML )
12741268 {
@@ -1309,9 +1303,6 @@ public override void WriteVerboseLine(string message)
13091303 /// </exception>
13101304 public override void WriteWarningLine ( string message )
13111305 {
1312- // don't lock here as WriteLine is already protected.
1313- message = HostUtilities . RemoveGuidFromMessage ( message , out _ ) ;
1314-
13151306 // NTRAID#Windows OS Bugs-1061752-2004/12/15-sburns should read a skin setting here...)
13161307 if ( _parent . ErrorFormat == Serialization . DataFormat . XML )
13171308 {
@@ -1346,13 +1337,6 @@ public override void WriteProgress(long sourceId, ProgressRecord record)
13461337 return ;
13471338 }
13481339
1349- bool matchPattern ;
1350- string currentOperation = HostUtilities . RemoveIdentifierInfoFromMessage ( record . CurrentOperation , out matchPattern ) ;
1351- if ( matchPattern )
1352- {
1353- record = new ProgressRecord ( record ) { CurrentOperation = currentOperation } ;
1354- }
1355-
13561340 // We allow only one thread at a time to update the progress state.)
13571341 if ( _parent . ErrorFormat == Serialization . DataFormat . XML )
13581342 {
0 commit comments