// // APBLogger.h // BioAuthEngine // // Created by yukun.tyk on 12/8/15. // Copyright © 2015 DTF. All rights reserved. // #import #import extern NSString *const kDebugNotiName; //log信息发送的通知名称 #define __FILE_NAME__ (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__) #ifdef DEBUG //debug // std::cout<<"\n[BIOAUTH]:" << [[NSString stringWithFormat:fmt, ##__VA_ARGS__]cStringUsingEncoding:NSUTF8StringEncoding] \ // <<", function:" << __PRETTY_FUNCTION__ << ", file:" << __FILE_NAME__ << ", line:" << __LINE__ << ", date:" << \ // __DATE__ << ", time:" <<__TIME__<