Tweaked several debug messages, backported a few Pro edition edits that were missed earlier

This commit is contained in:
Thulinma 2016-07-28 20:45:31 +02:00
parent 4dc3d22d12
commit 5ffe12aba4
3 changed files with 53 additions and 36 deletions

View file

@ -228,7 +228,7 @@ namespace Mist {
snprintf(userPageName, NAME_BUFFER_SIZE, SHM_USERS, streamName.c_str());
nProxy.userClient = IPC::sharedClient(userPageName, PLAY_EX_SIZE, true);
DEBUG_MSG(DLVL_DEVEL, "Input for stream %s started", streamName.c_str());
INFO_MSG("Input for stream %s started", streamName.c_str());
if (!openStreamSource()){
FAIL_MSG("Unable to connect to source");
@ -261,7 +261,7 @@ namespace Mist {
getNext();
nProxy.userClient.keepAlive();
}
closeStreamSource();
nProxy.userClient.finish();
@ -269,7 +269,7 @@ namespace Mist {
pullLock.post();
pullLock.close();
pullLock.unlink();
DEBUG_MSG(DLVL_DEVEL, "Pull input for stream %s closing clean", streamName.c_str());
INFO_MSG("Stream input %s closing clean", streamName.c_str());
return;
}