Skip to content
Snippets Groups Projects
Commit 5a2c4922 authored by George Nachman's avatar George Nachman
Browse files

remvoe some more logging.

parent 33e67f9e
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -176,7 +176,7 @@ DebugLog([NSString stringWithFormat:args]); \
// The OS will send a hotkey window to the background if it's open and in
// all spaces. Make it key before closing. This has to be done later because if you do it
// here the OS gets confused and two windows are key.
NSLog(@"Perform delayed selector with target %@", self);
//NSLog(@"Perform delayed selector with target %@", self);
[self performSelector:@selector(twiddleKeyWindow)
withObject:self
afterDelay:0];
Loading
Loading
Loading
Loading
@@ -441,13 +441,13 @@ int gDebugLogFile = -1;
DLog(@"******** Become Active");
for (PseudoTerminal* term in [self terminals]) {
if ([term isHotKeyWindow]) {
NSLog(@"Visor is open; not rescuing orphans.");
//NSLog(@"Visor is open; not rescuing orphans.");
return;
}
}
for (PseudoTerminal* term in [self terminals]) {
if ([term isOrderedOut]) {
NSLog(@"term %p was orphaned, order front.", term);
//NSLog(@"term %p was orphaned, order front.", term);
[[term window] orderFront:nil];
}
}
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment