- Fix log macro

This commit is contained in:
Giuseppe Nucifora 2018-05-02 11:03:45 +02:00
parent 78a514ed18
commit 874707e958
5 changed files with 8 additions and 8 deletions

View File

@ -38,7 +38,7 @@ PODS:
- NSString-Helper (1.1.0) - NSString-Helper (1.1.0)
- nv-ios-http-status (0.0.1) - nv-ios-http-status (0.0.1)
- PEAR-FileManager-iOS (1.3.1) - PEAR-FileManager-iOS (1.3.1)
- PNObject (2.5.6): - PNObject (2.5.7):
- AFNetworking - AFNetworking
- CodFis-Helper - CodFis-Helper
- DDDKeychainWrapper - DDDKeychainWrapper
@ -107,7 +107,7 @@ SPEC CHECKSUMS:
NSString-Helper: 645162758421206f509cb46cbd10023eab7594ed NSString-Helper: 645162758421206f509cb46cbd10023eab7594ed
nv-ios-http-status: b6c2b5fc8656cc19e0d3000dadce2080b99d0e2f nv-ios-http-status: b6c2b5fc8656cc19e0d3000dadce2080b99d0e2f
PEAR-FileManager-iOS: 3bc403f68a53483f5629aa822f4649e40275c4d3 PEAR-FileManager-iOS: 3bc403f68a53483f5629aa822f4649e40275c4d3
PNObject: c5280d687852b242e81e266575cdf04ec562b826 PNObject: 524a8d655fb150c0da2f262441bbbe24dd9bd8b9
PureLayout: 4d550abe49a94f24c2808b9b95db9131685fe4cd PureLayout: 4d550abe49a94f24c2808b9b95db9131685fe4cd
RZDataBinding: 6981e90ddaae2f5e02028323b1043f8c31013109 RZDataBinding: 6981e90ddaae2f5e02028323b1043f8c31013109
Specta: 3e1bd89c3517421982dc4d1c992503e48bd5fe66 Specta: 3e1bd89c3517421982dc4d1c992503e48bd5fe66

View File

@ -1,6 +1,6 @@
{ {
"name": "PNObject", "name": "PNObject",
"version": "2.5.6", "version": "2.5.7",
"summary": "PNObject is a simple replica of the more complex ParseObject", "summary": "PNObject is a simple replica of the more complex ParseObject",
"homepage": "https://github.com/giuseppenucifora/PNObject", "homepage": "https://github.com/giuseppenucifora/PNObject",
"license": { "license": {
@ -12,7 +12,7 @@
}, },
"source": { "source": {
"git": "https://github.com/giuseppenucifora/PNObject.git", "git": "https://github.com/giuseppenucifora/PNObject.git",
"tag": "2.5.6" "tag": "2.5.7"
}, },
"platforms": { "platforms": {
"ios": "8.0" "ios": "8.0"

View File

@ -38,7 +38,7 @@ PODS:
- NSString-Helper (1.1.0) - NSString-Helper (1.1.0)
- nv-ios-http-status (0.0.1) - nv-ios-http-status (0.0.1)
- PEAR-FileManager-iOS (1.3.1) - PEAR-FileManager-iOS (1.3.1)
- PNObject (2.5.6): - PNObject (2.5.7):
- AFNetworking - AFNetworking
- CodFis-Helper - CodFis-Helper
- DDDKeychainWrapper - DDDKeychainWrapper
@ -107,7 +107,7 @@ SPEC CHECKSUMS:
NSString-Helper: 645162758421206f509cb46cbd10023eab7594ed NSString-Helper: 645162758421206f509cb46cbd10023eab7594ed
nv-ios-http-status: b6c2b5fc8656cc19e0d3000dadce2080b99d0e2f nv-ios-http-status: b6c2b5fc8656cc19e0d3000dadce2080b99d0e2f
PEAR-FileManager-iOS: 3bc403f68a53483f5629aa822f4649e40275c4d3 PEAR-FileManager-iOS: 3bc403f68a53483f5629aa822f4649e40275c4d3
PNObject: c5280d687852b242e81e266575cdf04ec562b826 PNObject: 524a8d655fb150c0da2f262441bbbe24dd9bd8b9
PureLayout: 4d550abe49a94f24c2808b9b95db9131685fe4cd PureLayout: 4d550abe49a94f24c2808b9b95db9131685fe4cd
RZDataBinding: 6981e90ddaae2f5e02028323b1043f8c31013109 RZDataBinding: 6981e90ddaae2f5e02028323b1043f8c31013109
Specta: 3e1bd89c3517421982dc4d1c992503e48bd5fe66 Specta: 3e1bd89c3517421982dc4d1c992503e48bd5fe66

View File

@ -8,7 +8,7 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'PNObject' s.name = 'PNObject'
s.version = '2.5.6' s.version = '2.5.7'
s.summary = 'PNObject is a simple replica of the more complex ParseObject' s.summary = 'PNObject is a simple replica of the more complex ParseObject'

View File

@ -18,7 +18,7 @@
#pragma mark NSLogDebug Macro #pragma mark NSLogDebug Macro
#if defined(DEBUG) || (defined(FORCE_LOG) && FORCE_LOG == 1) #if defined(DEBUG) && defined(FORCE_LOG) && FORCE_LOG == 1
#define NSLogDebug(format, ...) NSLog(@"<%s:%d> %s, " format, strrchr("/" __FILE__, '/') + 1, __LINE__, __PRETTY_FUNCTION__, ## __VA_ARGS__) #define NSLogDebug(format, ...) NSLog(@"<%s:%d> %s, " format, strrchr("/" __FILE__, '/') + 1, __LINE__, __PRETTY_FUNCTION__, ## __VA_ARGS__)
#else #else
#define NSLogDebug(format, ...) #define NSLogDebug(format, ...)