summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorLionel Landwerlin <llandwerlin@gmail.com>2013-08-12 01:33:09 +0100
committerLionel Landwerlin <llandwerlin@gmail.com>2013-08-12 01:33:09 +0100
commit21d0093231aff169022cd0664207d0ec287327a9 (patch)
treeed2caa29bf33508b341329480c9010c11d3dea26 /examples
parent70af1a54f07f5b68aac3ad2a396d939083a3dbcf (diff)
downloadclutter-gst-21d0093231aff169022cd0664207d0ec287327a9.tar.gz
examples: camera-list: remove useless logging
Diffstat (limited to 'examples')
-rw-r--r--examples/camera-list.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/camera-list.js b/examples/camera-list.js
index 98d3aa4..a876e06 100644
--- a/examples/camera-list.js
+++ b/examples/camera-list.js
@@ -83,6 +83,7 @@ let addCamera = function(device) {
};
let removeCamera = function(device) {
+ log('removing camera : ' + device.get_name());
let children = stage.get_children();
for (let i in children) {
let actor = children[i];
@@ -95,7 +96,6 @@ let removeCamera = function(device) {
let timeline = actor.get_transition('scale-x');
timeline.connect('completed', Lang.bind(this, function() {
- log('actor removed');
stage.remove_child(actor);
}));
break;