From d5a812fbfae0f863ae2b2b02e65b13efb473906b Mon Sep 17 00:00:00 2001
From: Alexandre Savard <alexandresavard@alexandresavard-desktop.(none)>
Date: Thu, 6 May 2010 12:35:34 -0400
Subject: [PATCH] [#3376] Remove codec list logging when

---
 sflphone-common/src/account.cpp | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/sflphone-common/src/account.cpp b/sflphone-common/src/account.cpp
index 68c3e732b1..55d21bf5d4 100644
--- a/sflphone-common/src/account.cpp
+++ b/sflphone-common/src/account.cpp
@@ -92,8 +92,6 @@ void Account::setActiveCodecs (const std::vector <std::string> &list) {
 	int payload;
 	size_t size = list.size();
 
-	_info ("Account: Set the custom order %i", list.size ());
-
 	while ( (unsigned int) i < size) {
 		payload = std::atoi (list[i].data());
 		_info ("Account: Adding codec with RTP payload=%i", payload);
@@ -103,9 +101,9 @@ void Account::setActiveCodecs (const std::vector <std::string> &list) {
 		i++;
 	}
 
-    // setConfig
-    std::string s = Manager::instance ().serialize (list);
-    _info ("Account: Setting codec with payload number %s to the active list", s.c_str());
+	// setConfig
+	std::string s = Manager::instance ().serialize (list);
+
 	// Set the config per account
 	Manager::instance().setConfig (_accountID, "ActiveCodecs", s);
 
-- 
GitLab