mirror of
https://github.com/gnustep/libs-back.git
synced 2025-05-30 08:51:03 +00:00
* Source/winlib/WIN32FontEnumerator.m,
* Source/cairo/CairoFontEnumerator.m, * Source/xlib/GSXftFontInfo.m, * Source/xlib/XGFont.m: Use NSDebugLLog instead of NSDebugLog to reduce amount of default output. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@34493 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
caa986a9d6
commit
ea4772c07e
5 changed files with 18 additions and 10 deletions
|
@ -208,7 +208,7 @@ static NSArray *faFromFc(FcPattern *pat)
|
|||
[fcxft_allFontFamilies setObject: familyArray forKey: familyString];
|
||||
RELEASE(familyArray);
|
||||
}
|
||||
NSDebugLog(@"fc enumerator: adding font: %@", name);
|
||||
NSDebugLLog(@"NSFont", @"fc enumerator: adding font: %@", name);
|
||||
[familyArray addObject: fontArray];
|
||||
[fcxft_allFontNames addObject: name];
|
||||
aFont = [[FcFont alloc] initWithPattern: fs->fonts[i]];
|
||||
|
@ -819,11 +819,11 @@ static FT_Outline_Funcs bezierpath_funcs = {
|
|||
// Derek Zhou claims that this takes over the ownership of the pattern
|
||||
if ((font_info = XftFontOpenPattern(xdpy, pattern)))
|
||||
{
|
||||
NSDebugLog(@"Loaded font: %@", fontName);
|
||||
NSDebugLLog(@"NSFont", @"Loaded font: %@", fontName);
|
||||
}
|
||||
else
|
||||
{
|
||||
NSDebugLog(@"Cannot load font: %@", fontName);
|
||||
NSDebugLLog(@"NSFont", @"Cannot load font: %@", fontName);
|
||||
return NO;
|
||||
}
|
||||
|
||||
|
|
|
@ -295,7 +295,7 @@ static BOOL XGInitAtoms(Display *dpy)
|
|||
return NO;
|
||||
}
|
||||
else
|
||||
NSDebugLog(@"Loaded font: %@", xfontname);
|
||||
NSDebugLLog(@"NSFont", @"Loaded font: %@", xfontname);
|
||||
|
||||
// Fill the ivars
|
||||
ASSIGN(familyName, XGFontFamily(xdpy, font_info));
|
||||
|
@ -330,7 +330,7 @@ static BOOL XGInitAtoms(Display *dpy)
|
|||
}
|
||||
mostCompatibleStringEncoding
|
||||
= [GSMimeDocument encodingFromCharset: encodingScheme];
|
||||
NSDebugLog(@"Found encoding %d for %@",
|
||||
NSDebugLLog(@"NSFont", @"Found encoding %d for %@",
|
||||
mostCompatibleStringEncoding, encodingScheme);
|
||||
if (mostCompatibleStringEncoding == GSUndefinedEncoding)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue