Change the warn to info in recoverGlyphName to reduce the console spam

After PR 7441, where `recoverGlyphName` is used a lot more than before, many PDF files will generate a lot of warnings the console. For normal usage, compared to debugging/development, this is probably more annoying than helpful.
This commit is contained in:
Jonas Jenwald 2016-07-09 12:00:52 +02:00
parent bca1aebeac
commit 51e46fa1a7

View File

@ -200,7 +200,7 @@ function recoverGlyphName(name, glyphsUnicodeMap) {
}
}
}
warn('Unable to recover a standard glyph name for: ' + name);
info('Unable to recover a standard glyph name for: ' + name);
return name;
}