From f5588158d79a16acae5d5bf76aa0770c2ac8aa1a Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Wed, 15 Oct 2014 20:20:11 +0200 Subject: [PATCH] Comment out event handler debug couts --- src/MediaServer/MediaServer.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/MediaServer/MediaServer.cpp b/src/MediaServer/MediaServer.cpp index a7ce6d3..5e9bfa7 100644 --- a/src/MediaServer/MediaServer.cpp +++ b/src/MediaServer/MediaServer.cpp @@ -32,22 +32,26 @@ namespace piMapper { } void MediaServer::handleImageAdded(string& path) { + /* cout << "onImageAdded: " << path << endl; cout << "numImages: " << getNumImages() << endl; + */ ofNotifyEvent(onImageAdded, path, this); } void MediaServer::handleImageRemoved(string& path) { + /* cout << "onImageRemoved: " << path << endl; cout << "numImages: " << getNumImages() << endl; + */ ofNotifyEvent(onImageRemoved, path, this); } void MediaServer::handleVideoAdded(string& path) { - cout << "onVideoAdded: " << path << endl; + //cout << "onVideoAdded: " << path << endl; ofNotifyEvent(onVideoAdded, path, this); } void MediaServer::handleVideoRemoved(string& path) { - cout << "onVideoRemoved: " << path << endl; + //cout << "onVideoRemoved: " << path << endl; ofNotifyEvent(onVideoRemoved, path, this); }