imore informative logs

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@33990 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2011-10-14 13:59:59 +00:00
parent ed6078f217
commit fecac8cc4d

View file

@ -1351,7 +1351,7 @@ tables:
*/ */
if (estr == 0) if (estr == 0)
{ {
NSLog(@"No iconv for encoding x%02x", enc); NSLog(@"GSToUnicode() No iconv for encoding x%02x", enc);
result = NO; result = NO;
goto done; goto done;
} }
@ -1362,7 +1362,7 @@ tables:
cd = iconv_open(UNICODE_ENC, estr); cd = iconv_open(UNICODE_ENC, estr);
if (cd == (iconv_t)-1) if (cd == (iconv_t)-1)
{ {
NSLog(@"No iconv for encoding %@ tried to use %s", NSLog(@"GSToUnicode() No iconv for encoding %@ tried to use %s",
GSPrivateEncodingName(enc), estr); GSPrivateEncodingName(enc), estr);
result = NO; result = NO;
goto done; goto done;
@ -2314,7 +2314,7 @@ iconv_start:
*/ */
if (estr == 0) if (estr == 0)
{ {
NSLog(@"No iconv for encoding x%02x", enc); NSLog(@"GSFromUnicode() No iconv for encoding x%02x", enc);
result = NO; result = NO;
goto done; goto done;
} }
@ -2325,7 +2325,7 @@ iconv_start:
cd = iconv_open(estr, UNICODE_ENC); cd = iconv_open(estr, UNICODE_ENC);
if (cd == (iconv_t)-1) if (cd == (iconv_t)-1)
{ {
NSLog(@"No iconv for encoding %@ tried to use %s", NSLog(@"GSFromUnicode() No iconv for encoding %@ tried to use %s",
GSPrivateEncodingName(enc), estr); GSPrivateEncodingName(enc), estr);
result = NO; result = NO;
goto done; goto done;