Changed not-acceptable RTMP requests from FAIL to INFO level.
This commit is contained in:
parent
03c64340c3
commit
9c0494c04c
1 changed files with 2 additions and 2 deletions
|
@ -692,7 +692,7 @@ namespace Mist{
|
|||
amfReply.getContentP(3)->addContent(AMF::Object("code", "NetStream.Publish.Rejected"));
|
||||
amfReply.getContentP(3)->addContent(AMF::Object("description", "Publish rejected: this interface does not allow publishing"));
|
||||
sendCommand(amfReply, messageType, streamId);
|
||||
FAIL_MSG("Push from %s rejected - connector configured to only allow outgoing streams", getConnectedHost().c_str());
|
||||
INFO_MSG("Push from %s rejected - connector configured to only allow outgoing streams", getConnectedHost().c_str());
|
||||
onFinish();
|
||||
return;
|
||||
}
|
||||
|
@ -812,7 +812,7 @@ namespace Mist{
|
|||
amfReply.getContentP(3)->addContent(AMF::Object("code", "NetStream.Play.Rejected"));
|
||||
amfReply.getContentP(3)->addContent(AMF::Object("description", "Play rejected: this interface does not allow playback"));
|
||||
sendCommand(amfReply, messageType, streamId);
|
||||
FAIL_MSG("Play of %s by %s rejected - connector configured to only allow incoming streams", streamName.c_str(), getConnectedHost().c_str());
|
||||
INFO_MSG("Play of %s by %s rejected - connector configured to only allow incoming streams", streamName.c_str(), getConnectedHost().c_str());
|
||||
onFinish();
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue