You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_logger.Warn($"Tried to add an attribute with a rewriter not suitable for attributes. (target code kind = {rewriteSession.TargetCodeKind})");
49
+
_logger.Trace($"Tried to add attribute {attribute} with values {AttributeValuesText(values)} to {declaration.QualifiedModuleName} using a rewriter not suitable for attributes.");
50
+
return;
51
+
}
52
+
35
53
//VB_Ext_Key is special in that this attribute can be declared multiple times, but only once for each key.
_logger.Warn("Tried to remove an attribute from a declaration that is null.");
125
+
_logger.Trace($"Tried to remove attribute {attribute}{(values!=null?$"with values {AttributeValuesText(values)} ":string.Empty)}from a declaration that is null.");
_logger.Warn($"Tried to remove an attribute with a rewriter not suitable for attributes. (target code kind = {rewriteSession.TargetCodeKind})");
132
+
_logger.Trace($"Tried to remove attribute {attribute}{(values!=null?$"with values {AttributeValuesText(values)} ":string.Empty)}from {declaration.QualifiedModuleName} using a rewriter not suitable for attributes.");
_logger.Warn("Tried to updtae an attribute on a declaration that is null.");
192
+
_logger.Trace($"Tried to update values for attribute {attribute}{(oldValues!=null?$"with values {AttributeValuesText(oldValues)} ":string.Empty)}on a declaration that is null.");
_logger.Warn($"Tried to update an attribute with a rewriter not suitable for attributes. (target code kind = {rewriteSession.TargetCodeKind})");
199
+
_logger.Trace($"Tried to update values for attribute {attribute}{(oldValues!=null?$"with values {AttributeValuesText(oldValues)} ":string.Empty)}on {declaration.QualifiedModuleName} to {AttributeValuesText(oldValues)} using a rewriter not suitable for attributes.");
0 commit comments