Browse Source

Merge pull request #856 from kennethanderson/patch-1

Fix libjuice log level when libdatachannel's plog level is set to fatal
Paul-Louis Ageneau 2 years ago
parent
commit
ae0f48db53
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/impl/icetransport.cpp

+ 1 - 1
src/impl/icetransport.cpp

@@ -55,7 +55,7 @@ IceTransport::IceTransport(const Configuration &config, candidate_callback candi
 		level = JUICE_LOG_LEVEL_NONE;
 		break;
 	case plog::fatal:
-		level = JUICE_LOG_LEVEL_VERBOSE;
+		level = JUICE_LOG_LEVEL_FATAL;
 		break;
 	case plog::error:
 		level = JUICE_LOG_LEVEL_ERROR;