Corrected contact address

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/branches/RELEASE_0_3_5@17133 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Philippe C.D. Robert 2003-07-05 15:03:14 +00:00
parent 31936addc4
commit ca59ec7a21
2 changed files with 7 additions and 4 deletions

View file

@ -3,7 +3,7 @@
Copyright (C) 2001 Free Software Foundation
Author: Philippe C.D. Robert <phr@3dkit.org>
Author: Philippe C.D. Robert <probert@siggraph.org>
This file is part of GNUstep.
@ -34,7 +34,6 @@
@interface PCLogController : NSObject
{
}
- (void)logMessage:(NSString *)message tag:(int)tag;

View file

@ -3,7 +3,7 @@
Copyright (C) 2001 Free Software Foundation
Author: Philippe C.D. Robert <phr@3dkit.org>
Author: Philippe C.D. Robert <probert@siggraph.org>
This file is part of GNUstep.
@ -32,17 +32,21 @@
{
NSString *_log;
switch (tag) {
switch (tag)
{
case 0:
_log = [NSString stringWithFormat:@"Information from <%@: %x - %x>: %@",[self class],self,[NSThread currentThread],message];
break;
case 1:
_log = [NSString stringWithFormat:@"Warning from <%@: %x - %x>: %@",[self class],self,[NSThread currentThread],message];
break;
default:
break;
}
// Later we redirect this to our own output.
NSLog(message);
}