@@ -660,7 +660,7 @@ impl<'gc> Library<'gc> {
660660 let name = font. descriptor ( ) . name ( ) . to_owned ( ) ;
661661 let is_bold = font. descriptor ( ) . bold ( ) ;
662662 let is_italic = font. descriptor ( ) . italic ( ) ;
663- info ! ( "Loaded new device font \" {name}\" (bold: {is_bold}, italic: {is_italic}) from swf tag" ) ;
663+ tracing :: debug !( "Loaded new device font \" {name}\" (bold: {is_bold}, italic: {is_italic}) from swf tag" ) ;
664664 self . device_fonts . register ( font) ;
665665 }
666666 FontDefinition :: FontFile {
@@ -675,7 +675,7 @@ impl<'gc> Library<'gc> {
675675 Font :: from_font_file ( gc_context, descriptor, data, index, FontType :: Device )
676676 {
677677 let name = font. descriptor ( ) . name ( ) . to_owned ( ) ;
678- info ! ( "Loaded new device font \" {name}\" (bold: {is_bold}, italic: {is_italic}) from file" ) ;
678+ tracing :: debug !( "Loaded new device font \" {name}\" (bold: {is_bold}, italic: {is_italic}) from file" ) ;
679679 self . device_fonts . register ( font) ;
680680 } else {
681681 warn ! ( "Failed to load device font from file" ) ;
@@ -689,7 +689,7 @@ impl<'gc> Library<'gc> {
689689 } => {
690690 let descriptor = FontDescriptor :: from_parts ( & name, is_bold, is_italic) ;
691691 let font = Font :: from_renderer ( gc_context, descriptor, font_renderer) ;
692- info ! ( "Loaded new externally rendered font \" {name}\" (bold: {is_bold}, italic: {is_italic})" ) ;
692+ tracing :: debug !( "Loaded new externally rendered font \" {name}\" (bold: {is_bold}, italic: {is_italic})" ) ;
693693 self . device_fonts . register ( font) ;
694694 }
695695 }
0 commit comments