mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-14 06:31:31 +00:00
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:
parent
31936addc4
commit
ca59ec7a21
2 changed files with 7 additions and 4 deletions
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue