为什么控制台输出在Xcode 8 / iOS 10中显示不完整?
Answers:
治标不治本,只是重新定义都NSLOG
以printf
在全球头文件。
#define NSLog(FORMAT, ...) printf("%s\n", [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);
在iOS 10和Xcode 8中,Apple从旧版本ASL
(Apple System Log)切换到了名为的新日志系统Unified logging
。NSLog
调用实际上是委派给新的os_log
API。(来源:https : //developer.apple.com/reference/os/logging):
重要
统一日志记录可在iOS 10.0和更高版本,macOS 10.12和更高版本,tvOS 10.0和更高版本以及watchOS 3.0和更高版本中使用,并取代ASL(Apple系统记录器)和Syslog API。历史上,日志消息被写入磁盘上的特定位置,例如/etc/system.log。统一日志记录系统将消息存储在内存和数据存储中,而不是写入基于文本的日志文件。
和
重要
日志系统存储时,大于系统最大消息长度的日志消息行将被截断。使用log命令行工具查看活动实时流时,完整的消息是可见的。但是请记住,流日志数据是一项昂贵的活动。
@Hot_Leaks(来源:)指出,SDK标头中显示的“系统最大消息长度”限制为1024个字符(用于格式化变量<os/log.h>
):
/*!
* @function os_log
*
* ...
*
* There is a physical cap of 1024 bytes per log line for dynamic content,
* such as %s and %@, that can be written to the persistence store.
* All content exceeding the limit will be truncated before it is
* written to disk.
*
* ...
*
*/
#define os_log(log, format, ...) os_log_with_type(log, OS_LOG_TYPE_DEFAULT, format, ##__VA_ARGS__)
由于缓冲区大小限制似乎被硬编码为libsystem_trace.dylib
,所以我看不到解决方法,而是打印字符串文字而不是格式化变量(%@
),或将格式化的字符串变量拆分为<1024个字符串。
printf
由于调试器(Xcode)显示了进程的输出/错误流,因此它将在调试期间工作,但是不会将其发送到设备日志本身。这意味着xfdai的解决方案在使用其他日志应用程序(例如macOS的Console
App)或未调试的应用程序(例如在客户设备上运行的AppStore应用程序)中出现问题时将无济于事。
将xfdai的答案扩展到已部署的应用程序
在已部署的应用程序/非调试版本中,无法看到NSLog
s或printf
s。
将消息直接打印到设备日志(可以使用Xcode-> Window->设备,mac的Console App或诸如deviceconsole之类的第三方工具访问)的唯一方法是调用os_log
API(ASL
自iOS 10开始使用) )。
这是我用来重新定义NSLog
为_os_log_internal
iOS 10上的调用的全局头文件:
#ifndef PrefixHeader_pch
#define PrefixHeader_pch
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#endif
#import <os/object.h>
#import <os/activity.h>
/*
* System Versioning Preprocessor Macros
*/
#define SYSTEM_VERSION_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedSame)
#define SYSTEM_VERSION_GREATER_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedDescending)
#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
#define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending)
#define SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedDescending)
// os_log is only supported when compiling with Xcode 8.
// Check if iOS version > 10 and the _os_log_internal symbol exists,
// load it dynamically and call it.
// Definitions extracted from #import <os/log.h>
#if OS_OBJECT_SWIFT3
OS_OBJECT_DECL_SWIFT(os_log);
#elif OS_OBJECT_USE_OBJC
OS_OBJECT_DECL(os_log);
#else
typedef struct os_log_s *os_log_t;
#endif /* OS_OBJECT_USE_OBJC */
extern struct os_log_s _os_log_default;
extern __attribute__((weak)) void _os_log_internal(void *dso, os_log_t log, int type, const char *message, ...);
// In iOS 10 NSLog only shows in device log when debugging from Xcode:
#define NSLog(FORMAT, ...) \
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"10.0")) {\
void(*ptr_os_log_internal)(void *, __strong os_log_t, int, const char *, ...) = _os_log_internal;\
if (ptr_os_log_internal != NULL) {\
_Pragma("clang diagnostic push")\
_Pragma("clang diagnostic error \"-Wformat\"")\
_os_log_internal(&__dso_handle, OS_OBJECT_GLOBAL_OBJECT(os_log_t, _os_log_default), 0x00, [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);\
_Pragma("clang diagnostic pop")\
} else {\
NSLog(FORMAT, ##__VA_ARGS__);\
}\
} else {\
NSLog(FORMAT, ##__VA_ARGS__);\
}
#endif /* PrefixHeader_pch */
os_log
API的用法。欢迎您根据需要编辑代码。
这是仅iOS 10的“功能”。使用此代替:
printf("%s", [logString UTF8String]);
您可以使用此方法。每800个字符分割一次。或者可以设置。NSLOG我认为每1000个字符截断一次。如果字符串小于800,将使用简单的NSLog。这对于Json长字符串很有用,并使用控制台。printf使用Xcode调试窗口而不是控制台。
-(void) JSLog:(NSString*)logString{
int stepLog = 800;
NSInteger strLen = [@([logString length]) integerValue];
NSInteger countInt = strLen / stepLog;
if (strLen > stepLog) {
for (int i=1; i <= countInt; i++) {
NSString *character = [logString substringWithRange:NSMakeRange((i*stepLog)-stepLog, stepLog)];
NSLog(@"%@", character);
}
NSString *character = [logString substringWithRange:NSMakeRange((countInt*stepLog), strLen-(countInt*stepLog))];
NSLog(@"%@", character);
} else {
NSLog(@"%@", logString);
}
}
在iOS 10上:
printf()
在Xcode的控制台内运行,但在设备的控制台日志上不起作用。 NSLog
在两个地方都截断。我现在要做的是将NSLog
字符串分成几行,并分别记录每行。
- (void) logString: (NSString *) string
{
for (NSString *line in [string componentsSeparatedByCharactersInSet: [NSCharacterSet newlineCharacterSet]])
{
NSLog(@"%@", line);
}
}
这在控制台上有效,但不容易阅读。
从@xfdai答案,添加漂亮的功能和行
#define NSLog(FORMAT, ...) printf("%s:%d %s\n", __PRETTY_FUNCTION__,__LINE__,[[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String])
有日期
#define NSLog(FORMAT, ...) printf("%s %s:%d %s\n", [[[NSDate date] description] UTF8String],__PRETTY_FUNCTION__,__LINE__,[[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String])