Removed some extraneous log statements

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@15592 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2003-01-14 06:31:50 +00:00
parent b7931b0b4f
commit 6a4fdb042f

View file

@ -312,7 +312,7 @@ static NSImage *classesImage = nil;
NSString *className = [classManager customClassForName: key];
[tempNameTable setObject: obj forKey: key]; // save the old object
NSLog(@"className = (%@), obj = (%@), key = (%@)",className,obj,key);
NSDebugLog(@"className = (%@), obj = (%@), key = (%@)",className,obj,key);
if(className != nil)
{
// The order in which these are handled is important. The mutually
@ -323,7 +323,7 @@ static NSImage *classesImage = nil;
{
BOOL isVisible = [self objectIsVisibleAtLaunch: obj];
NSLog(@"In the window template if...");
NSDebugLog(@"In the window template if...");
template = [[GormNSWindowTemplate alloc] initWithObject: obj
className: className];
[self setObject: obj isVisibleAtLaunch: NO];