From bf1a2b565531bef2bccae98df12446316da1b46f Mon Sep 17 00:00:00 2001 From: Stefan Haubold Date: Wed, 22 Feb 2012 17:30:01 +0100 Subject: [PATCH] removed PSLog to prevent conflicts with other SDKs --- Classes/PSStoreButton.m | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Classes/PSStoreButton.m b/Classes/PSStoreButton.m index 2ffe73fee8..f2eb17bc78 100644 --- a/Classes/PSStoreButton.m +++ b/Classes/PSStoreButton.m @@ -27,12 +27,6 @@ #import "PSStoreButton.h" -#ifdef DEBUG -#define PSLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__); -#else -#define PSLog(...) -#endif - #define PS_RGBCOLOR(r,g,b) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:1] #define PS_MIN_HEIGHT 25.0f #define PS_MAX_WIDTH 120.0f @@ -87,12 +81,7 @@ #pragma mark - #pragma mark private -- (void)touchedUpOutside:(id)sender { - PSLog(@"touched outside..."); -} - - (void)buttonPressed:(id)sender { - PSLog(@"calling delegate:storeButtonFired for %@", sender); [buttonDelegate_ storeButtonFired:self]; }