Skip to content

Commit

Permalink
RDKTV-27601: RDKShell: removed redundant logs
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianM27 committed Jan 12, 2024
1 parent 4617db7 commit 9bba5ae
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions RDKShell/RDKShell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,6 @@ static void setHibernateBlocked(bool val)
{
gHibernateBlocked--;
}
std::cout << "setHibernateBlocked("<< gHibernateBlocked <<")" << std::endl;
lock.unlock();
gHibernateBlockedCondVariable.notify_all();
}
Expand All @@ -279,7 +278,6 @@ static bool waitForHibernateUnblocked(int timeoutMs)
std::unique_lock<std::mutex> lock(gHibernateBlockedMutex);
while (gHibernateBlocked > 0)
{
std::cout << "Hibernation blocked, waiting" << std::endl;
if (gHibernateBlockedCondVariable.wait_for(lock, std::chrono::milliseconds(timeoutMs))
== std::cv_status::timeout)
break;
Expand All @@ -291,7 +289,6 @@ static bool waitForHibernateUnblocked(int timeoutMs)
return false;
}

std::cout << "Hibernation not blocked" << std::endl;
return true;
}

Expand Down

0 comments on commit 9bba5ae

Please sign in to comment.