How to disable log statements in QuickBlox?
Asked Answered
S

1

6

Quickblox often logs stuff like:

Performing async request: 
RestRequest:
------
POST http://api.quickblox.com/session.xml
headers:{
    "QB-SDK" = "iOS 1.5.2";
    "QuickBlox-REST-API-Version" = "0.1.1";
}

But sometimes I want to disable QB logs to see the logs produced by my code more clearly. Is there any way to do that?

Synopsize answered 30/6, 2013 at 10:49 Comment(0)
B
16
[QBSettings setLogLevel:QBLogLevelNothing];
Bottoms answered 1/7, 2013 at 10:6 Comment(1)
for android QBSettings.getInstance().setLogLevel(LogLevel.NOTHING);Martimartial

© 2022 - 2024 — McMap. All rights reserved.