Skip to content

Commit

Permalink
Removed logging
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyschoen committed Dec 3, 2023
1 parent 51fc798 commit 0a7fdca
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions Source/Pd/Instance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,6 @@ void Instance::initialisePd(String& pdlua_version)
set_instance_lock(
static_cast<void const*>(&audioLock),
[](void* lock) {
if(MessageManager::getInstance()->isThisTheMessageThread())
{
std::cout << "lock" << std::endl;
}
static_cast<CriticalSection*>(lock)->enter();
},
[](void* lock) {
Expand Down Expand Up @@ -743,10 +739,6 @@ bool Instance::loadLibrary(String const& libraryToLoad)

void Instance::lockAudioThread()
{
if(MessageManager::getInstance()->isThisTheMessageThread())
{
std::cout << "lock" << std::endl;
}
audioLock.enter();
}

Expand Down

0 comments on commit 0a7fdca

Please sign in to comment.