1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-10-27 10:23:12 +03:00

Use DLOG instead of WLOG

This commit is contained in:
Tae Won Ha 2017-01-08 21:35:54 +01:00
parent 00137e144e
commit cc24d91906
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44
2 changed files with 2 additions and 2 deletions

View File

@ -54,6 +54,6 @@ int main(int argc, const char *argv[]) {
CFRunLoopRun();
WLOG("NeoVimServer returning.");
DLOG("NeoVimServer returning.");
return 0;
}

View File

@ -516,7 +516,7 @@ void start_neovim() {
}
void quit_neovim() {
WLOG("NeoVimServer exiting...");
DLOG("NeoVimServer exiting...");
CFRunLoopStop(_mainRunLoop);
}