implemented ipc message buffering (dequeues on gui reconnect)

This commit is contained in:
Nick Bolton 2012-07-06 12:27:22 +00:00
parent b921d9c916
commit 12eb8efb61
10 changed files with 157 additions and 21 deletions

View file

@ -288,7 +288,10 @@ CMSWindowsRelauncher::mainLoop(void*)
std::string cmd = command();
if (cmd == "") {
LOG((CLOG_WARN "nothing to launch, no command specified."));
// this appears on first launch when the user hasn't configured
// anything yet, so don't show it as a warning, only show it as
// debug to devs to let them know why nothing happened.
LOG((CLOG_DEBUG "nothing to launch, no command specified."));
continue;
}