ref: aff04e91f630993c8cb0dd2eb758fa0d3632afd1
parent: 83525bdd10c4b00500d8d9b5bbf5ad0419c99d21
author: Werner Lemberg <[email protected]>
date: Fri Aug 31 10:57:36 EDT 2018
* src/base/ftdebug.c (FT_Throw): Reduce chattiness.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2018-08-31 Werner Lemberg <[email protected]>
+ * src/base/ftdebug.c (FT_Throw): Reduce chattiness.
+
+2018-08-31 Werner Lemberg <[email protected]>
+
* src/autofit/afhints.c (af_glyph_hints_reload): Add initialization.
2018-08-30 Alexei Podtelezhnikov <[email protected]>
--- a/src/base/ftdebug.c
+++ b/src/base/ftdebug.c
@@ -87,6 +87,8 @@
int line,
const char* file )
{
+#if 0
+ /* activating the code in this block makes FreeType very chatty */
fprintf( stderr,
"%s:%d: error 0x%02x: %s\n",
file,
@@ -93,6 +95,7 @@
line,
error,
FT_Error_String( error ) );
+#endif
return 0;
}