1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-24 22:33:52 +03:00

GH-339 Remove unnec' log msg

This commit is contained in:
Tae Won Ha 2017-01-07 20:35:17 +01:00
parent c78b4f3413
commit cbc7364ece
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44

View File

@ -355,9 +355,6 @@ static CFDataRef local_server_callback(CFMessagePortRef local, SInt32 msgid, CFD
}
- (NSData *)sendMessageWithId:(NeoVimAgentMsgId)msgid data:(NSData *)data expectsReply:(bool)expectsReply {
if (!NSThread.isMainThread) {
NSLog(@"THREAD: %@\t msgid: %d\t data: %@", NSThread.currentThread, msgid, data);
}
if (_neoVimIsQuitting == 1 && msgid != NeoVimAgentMsgIdQuit) {
// This happens often, e.g. when exiting full screen by closing all buffers. We try to resize the window after
// the message port has been closed. This is a quick-and-dirty fix.