Browse Source

Changed SDP line log as verbose

Paul-Louis Ageneau 5 years ago
parent
commit
c7829bc523
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/description.cpp

+ 3 - 1
src/description.cpp

@@ -68,7 +68,9 @@ Description::Description(const string &sdp, Type type, Role role)
 		finished = !std::getline(ss, line) && line.empty();
 		trim_end(line);
 
-		LOG_DEBUG << line;
+		if (!finished) {
+			LOG_VERBOSE << "SDP line: " << line;
+		}
 
 		// Media description line (aka m-line)
 		if (finished || match_prefix(line, "m=")) {