如何启用 XMPPFramework 在控制台上打印原始 XML
How to enable XMPPFramework to print raw XML on console
我想知道如何启用 XMPPFramework (https://github.com/robbiehanson/XMPPFramework) 在控制台上打印原始 XML 例如;喜欢这个
SEND: <stream:stream xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' version='1.0' to='dev.doctome.org'>
我从以下话题中得到了答案。
https://groups.google.com/forum/#!topic/xmppframework/6cpoAHKBpNg
基本上你必须添加带有 XMPP_LOG_FLAG_SEND_RECV
标志的记录器。
[DDLog addLogger:[DDTTYLogger sharedInstance] withLogLevel:XMPP_LOG_FLAG_SEND_RECV];
我想知道如何启用 XMPPFramework (https://github.com/robbiehanson/XMPPFramework) 在控制台上打印原始 XML 例如;喜欢这个
SEND: <stream:stream xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' version='1.0' to='dev.doctome.org'>
我从以下话题中得到了答案。
https://groups.google.com/forum/#!topic/xmppframework/6cpoAHKBpNg
基本上你必须添加带有 XMPP_LOG_FLAG_SEND_RECV
标志的记录器。
[DDLog addLogger:[DDTTYLogger sharedInstance] withLogLevel:XMPP_LOG_FLAG_SEND_RECV];