we really should be notified when we have association errors

This commit is contained in:
Michael Becker 2021-06-02 01:50:50 -04:00
parent b9cec0ad25
commit 062a211706
No known key found for this signature in database
GPG Key ID: 98C333A81F18C22C

View File

@ -925,11 +925,11 @@ namespace UniversalEditor.DataFormats.UEPackage
{
if (attTypeName != null)
{
// Console.WriteLine("DataFormat could not be associated: " + attTypeName.Value);
Console.Error.WriteLine("DataFormat could not be associated: " + attTypeName.Value);
}
else if (attID != null)
{
// Console.WriteLine("DataFormat could not be associated: " + attID.Value);
Console.Error.WriteLine("DataFormat could not be associated: " + attID.Value);
}
}
}