Fix logging level for when unable to open file.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@25204 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2007-05-29 09:07:47 +00:00
parent db81f051db
commit 3d3b1e37fc
3 changed files with 78 additions and 1 deletions

View file

@ -164,7 +164,7 @@ readContentsOfFile(NSString* path, void** buf, unsigned int* len, NSZone* zone)
if (theFile == 0) /* We failed to open the file. */
{
NSWarnFLog(@"Open (%@) attempt failed - %@", path, [NSError _last]);
NSDebugFLog(@"Open (%@) attempt failed - %@", path, [NSError _last]);
goto failure;
}