diff -r 436cbdf56810 -r efe5d4523a23 Source/QuartzUtils.m --- a/Source/QuartzUtils.m Sat Jul 05 17:46:43 2008 -0700 +++ b/Source/QuartzUtils.m Thu Jul 31 13:23:44 2008 -0700 @@ -69,7 +69,7 @@ { #if TARGET_OS_IPHONE UIImage *uiImage = [UIImage imageWithContentsOfFile: path]; - if(!uiImage) NSLog(@"Warning: UIImage imageWithContentsOfFile failed on file %@",path); + if(!uiImage) Warn(@"UIImage imageWithContentsOfFile failed on file %@",path); return CGImageRetain(uiImage.CGImage); #else CGImageRef image = NULL; @@ -78,7 +78,7 @@ if( src ) { image = CGImageSourceCreateImageAtIndex(src, 0, NULL); CFRelease(src); - if(!image) NSLog(@"Warning: CGImageSourceCreateImageAtIndex failed on file %@ (ptr size=%u)",path,sizeof(void*)); + if(!image) Warn(@"CGImageSourceCreateImageAtIndex failed on file %@ (ptr size=%u)",path,sizeof(void*)); } return image; #endif