我正在更新我的应用程序以使用 RestKit 0.2pre3,但在这个过程中我丢失了 RestKit 提供的日志系统,它不再显示任何内容。我使用 cocoapods 来安装 RestKit。
这是我的 Podfile
platform :ios , '5.1'
pod 'SSPullToRefresh'
pod 'MBProgressHUD'
pod 'Facebook-iOS-SDK'
pod 'TestFlightSDK'
pod 'SDWebImage'
pod 'KISSmetrics'
pod 'CustomBadge'
pod 'GoogleAnalytics-iOS-SDK'
pod 'JSONKit'
pod 'LibComponentLogging-Core'
pod 'LibComponentLogging-LogFile'
pod 'LibComponentLogging-qlog'
pod 'LibComponentLogging-pods'
pod 'RestKit/Testing'
pod 'RestKit'
pod 'OHAttributedLabel'
而且,当然,在我的代码中,我正在调用
RKLogConfigureByName("RestKit", RKLogLevelTrace);
RKLogConfigureByName("RestKit/Network", RKLogLevelTrace);
RKLogConfigureByName("RestKit/CoreData", RKLogLevelDebug);
我什至可以发出成功的请求并获取映射的对象,但我无法看到我的服务器返回了什么、映射过程是如何执行的或其他任何事情,这是至关重要的。
我认为问题在于 LCL 中的某些内容配置错误,但我找不到任何关于它的线索。
问题可能出在哪里?