打包加入依赖的onvif包
parent
f7a2d2a92d
commit
bc2b288547
3
pom.xml
3
pom.xml
|
@ -202,6 +202,9 @@
|
|||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
<configuration>
|
||||
<includeSystemScope>true</includeSystemScope>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
|
|
|
@ -194,7 +194,7 @@ public class ZLMRTPServerFactory {
|
|||
logger.error("RTP推流失败: 请检查ZLM服务");
|
||||
} else if (jsonObject.getInteger("code") == 0) {
|
||||
result= true;
|
||||
logger.error("RTP推流请求成功,本地推流端口:" + jsonObject.getString("local_port"));
|
||||
logger.info("RTP推流请求成功,本地推流端口:" + jsonObject.getString("local_port"));
|
||||
} else {
|
||||
logger.error("RTP推流失败: " + jsonObject.getString("msg"));
|
||||
}
|
||||
|
@ -238,7 +238,7 @@ public class ZLMRTPServerFactory {
|
|||
logger.error("停止RTP推流失败: 请检查ZLM服务");
|
||||
} else if (jsonObject.getInteger("code") == 0) {
|
||||
result= true;
|
||||
logger.error("停止RTP推流成功");
|
||||
logger.info("停止RTP推流成功");
|
||||
} else {
|
||||
logger.error("停止RTP推流失败: " + jsonObject.getString("msg"));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue