Browse Source

Comment out event handler debug couts

master
Krisjanis Rijnieks 11 years ago
parent
commit
f5588158d7
  1. 8
      src/MediaServer/MediaServer.cpp

8
src/MediaServer/MediaServer.cpp

@ -32,22 +32,26 @@ namespace piMapper {
} }
void MediaServer::handleImageAdded(string& path) { void MediaServer::handleImageAdded(string& path) {
/*
cout << "onImageAdded: " << path << endl; cout << "onImageAdded: " << path << endl;
cout << "numImages: " << getNumImages() << endl; cout << "numImages: " << getNumImages() << endl;
*/
ofNotifyEvent(onImageAdded, path, this); ofNotifyEvent(onImageAdded, path, this);
} }
void MediaServer::handleImageRemoved(string& path) { void MediaServer::handleImageRemoved(string& path) {
/*
cout << "onImageRemoved: " << path << endl; cout << "onImageRemoved: " << path << endl;
cout << "numImages: " << getNumImages() << endl; cout << "numImages: " << getNumImages() << endl;
*/
ofNotifyEvent(onImageRemoved, path, this); ofNotifyEvent(onImageRemoved, path, this);
} }
void MediaServer::handleVideoAdded(string& path) { void MediaServer::handleVideoAdded(string& path) {
cout << "onVideoAdded: " << path << endl; //cout << "onVideoAdded: " << path << endl;
ofNotifyEvent(onVideoAdded, path, this); ofNotifyEvent(onVideoAdded, path, this);
} }
void MediaServer::handleVideoRemoved(string& path) { void MediaServer::handleVideoRemoved(string& path) {
cout << "onVideoRemoved: " << path << endl; //cout << "onVideoRemoved: " << path << endl;
ofNotifyEvent(onVideoRemoved, path, this); ofNotifyEvent(onVideoRemoved, path, this);
} }

Loading…
Cancel
Save