From f15caf93f5622ea378c70f0d6b8c4d3b55e76305 Mon Sep 17 00:00:00 2001 From: Stefan Reitshamer Date: Tue, 16 Aug 2011 17:22:11 -0400 Subject: [PATCH] changed warning about not applying finder file type to a trace statement --- FileAttributes.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FileAttributes.m b/FileAttributes.m index d890a15..81427a2 100644 --- a/FileAttributes.m +++ b/FileAttributes.m @@ -261,9 +261,9 @@ static OSStatus SymlinkPathMakeRef(const UInt8 *path, FSRef *ref, Boolean *isDir - (BOOL)applyFinderFileType:(NSString *)fft finderFileCreator:(NSString *)ffc error:(NSError **)error { if (targetExists && (![fft isEqualToString:finderFileType] || ![ffc isEqualToString:finderFileCreator])) { if ([fft length] != 4) { - HSLogWarn(@"not applying finder file type '%@' to %@: invalid length (must be 4 characters)", fft, path); + HSLogTrace(@"not applying finder file type '%@' to %@: invalid length (must be 4 characters)", fft, path); } else if ([ffc length] != 4) { - HSLogWarn(@"not applying finder file type '%@' to %@: invalid length (must be 4 characters)", ffc, path); + HSLogTrace(@"not applying finder file type '%@' to %@: invalid length (must be 4 characters)", ffc, path); } else { FSRef fsRef; Boolean isDirectory;