mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
Add some diagnostic logging
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@26923 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0643ffbda4
commit
04c08a9a96
1 changed files with 3 additions and 2 deletions
|
@ -540,7 +540,7 @@ static NSLock *cached_proxies_gate = nil;
|
|||
|
||||
+ (void) initialize
|
||||
{
|
||||
if (self == [NSConnection class])
|
||||
if (connectionClass == nil)
|
||||
{
|
||||
NSNotificationCenter *nc;
|
||||
|
||||
|
@ -2222,7 +2222,8 @@ static void retEncoder (DOContext *ctxt)
|
|||
conn = [connectionClass connectionWithReceivePort: rp sendPort: sp];
|
||||
if (conn == nil)
|
||||
{
|
||||
NSLog(@"received port message for unknown connection - %@", msg);
|
||||
NSLog(@"Received port message for unknown connection - %@", msg);
|
||||
NSLog(@"All connections: %@", [NSConnection allConnections]);
|
||||
return;
|
||||
}
|
||||
else if ([conn isValid] == NO)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue