Browse Source

Made the logging of an RTP packet be verbose

Staz M 4 years ago
parent
commit
11ec8f7247
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/rtc/rtp.hpp

+ 1 - 1
include/rtc/rtp.hpp

@@ -80,7 +80,7 @@ public:
 	void setTimestamp(uint32_t i) { _timestamp = htonl(i); }
 	void setTimestamp(uint32_t i) { _timestamp = htonl(i); }
 
 
 	void log() {
 	void log() {
-		PLOG_DEBUG  << "RTP V: " << (int) version()
+		PLOG_VERBOSE  << "RTP V: " << (int) version()
 		            << " P: " << (padding() ? "P" : " ")
 		            << " P: " << (padding() ? "P" : " ")
 		            << " X: " << (extension() ? "X" : " ")
 		            << " X: " << (extension() ? "X" : " ")
 		            << " CC: "  << (int) csrcCount()
 		            << " CC: "  << (int) csrcCount()