log: remove debugging log

Refs #67102

Change-Id: I93201360c6618efba10ae251b76b625aa96e5052
diff --git a/ConversationsViewController.mm b/ConversationsViewController.mm
index f514d76..4b7ce22 100644
--- a/ConversationsViewController.mm
+++ b/ConversationsViewController.mm
@@ -70,8 +70,6 @@
     QObject::connect(CallModel::instance(),
                      &QAbstractItemModel::dataChanged,
                      [=](const QModelIndex &topLeft, const QModelIndex &bottomRight) {
-                         NSLog(@"data changed for call tree %d, %d", topLeft.row(), bottomRight.row());
-
                          [conversationsView reloadDataForRowIndexes:
                           [NSIndexSet indexSetWithIndexesInRange:NSMakeRange(topLeft.row(), bottomRight.row() + 1)]
                         columnIndexes:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(0, conversationsView.tableColumns.count)]];
diff --git a/CurrentCallVC.mm b/CurrentCallVC.mm
index 337aa23..ba70063 100644
--- a/CurrentCallVC.mm
+++ b/CurrentCallVC.mm
@@ -206,7 +206,6 @@
     QObject::connect(CallModel::instance()->selectionModel(),
                      &QItemSelectionModel::currentChanged,
                      [=](const QModelIndex &current, const QModelIndex &previous) {
-                         NSLog(@"selection changed!");
                          if(!current.isValid()) {
                              [self animateOut];
                              return;
@@ -219,14 +218,12 @@
     QObject::connect(CallModel::instance(),
                      &QAbstractItemModel::dataChanged,
                      [=](const QModelIndex &topLeft, const QModelIndex &bottomRight) {
-                         NSLog(@"data changed!");
                          [self updateCall];
                      });
 
     QObject::connect(CallModel::instance()->userActionModel(),
                      &QAbstractItemModel::dataChanged,
                      [=](const QModelIndex &topLeft, const QModelIndex &bottomRight) {
-                         NSLog(@"useraction changed");
                          const int first(topLeft.row()),last(bottomRight.row());
                          for(int i = first; i <= last;i++) {
                              [self updateActionAtIndex:i];
@@ -236,7 +233,6 @@
     QObject::connect(CallModel::instance(),
                      &CallModel::callStateChanged,
                      [self](Call* c, Call::State state) {
-                         NSLog(@"callStateChanged");
                          [self updateCall];
     });
 }
@@ -255,7 +251,6 @@
 
     if(call->videoRenderer())
     {
-        NSLog(@"GONNA CONNECT TO FRAMES");
         [self connectVideoRenderer:call->videoRenderer()];
     }
 
diff --git a/RingWindowController.mm b/RingWindowController.mm
index 59eb887..f46bf66 100644
--- a/RingWindowController.mm
+++ b/RingWindowController.mm
@@ -247,7 +247,6 @@
 
 - (BOOL)control:(NSControl *)control textView:(NSTextView *)fieldEditor doCommandBySelector:(SEL)commandSelector
 {
-    NSLog(@"Selector method is (%@)", NSStringFromSelector( commandSelector ) );
     if (commandSelector == @selector(insertNewline:)) {
         if([[callField stringValue] isNotEqualTo:@""]) {
             [self placeCall:nil];