Manos Chorianopoulos

fix truncaiting logs

...@@ -49,6 +49,8 @@ ...@@ -49,6 +49,8 @@
49 */ 49 */
50 #define WL_FMDBLogError if ([_db hadError]) { WLLOG(@"Err %d: %@", [_db lastErrorCode], [_db lastErrorMessage]); } 50 #define WL_FMDBLogError if ([_db hadError]) { WLLOG(@"Err %d: %@", [_db lastErrorCode], [_db lastErrorMessage]); }
51 51
52 +#define NSLog(FORMAT, ...) printf("%s\n", [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);
53 +
52 /*! 54 /*!
53 @typedef _WLResultCodes 55 @typedef _WLResultCodes
54 @abstract Warply related custom result codes. 56 @abstract Warply related custom result codes.
......