CB-8351 Use a local copy of DLog macro rather than CordovaLib version

This commit is contained in:
Andrew Grieve
2015-01-22 13:36:12 -05:00
parent 0481a2ad92
commit 2b111a229d
+8
View File
@@ -26,6 +26,14 @@
#import <AssetsLibrary/ALAssetsLibrary.h>
#import <CFNetwork/CFNetwork.h>
#ifndef DLog
#ifdef DEBUG
#define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__)
#else
#define DLog(...)
#endif
#endif
@interface CDVFileTransfer ()
// Sets the requests headers for the request.
- (void)applyRequestHeaders:(NSDictionary*)headers toRequest:(NSMutableURLRequest*)req;