From 9162b740e9d1c6f70fcf2ccaf876eca8e956672f Mon Sep 17 00:00:00 2001 From: Andreas Linde Date: Mon, 5 Dec 2011 11:34:59 +0100 Subject: [PATCH] Update some log statements to be shown always and not only when logging is enabled --- Classes/BWHockeyManager.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Classes/BWHockeyManager.m b/Classes/BWHockeyManager.m index 4b519b1d8e..109f001dcb 100644 --- a/Classes/BWHockeyManager.m +++ b/Classes/BWHockeyManager.m @@ -481,7 +481,7 @@ static NSString *kHockeyErrorDomain = @"HockeyErrorDomain"; - (void)showUpdateView { if (isAppStoreEnvironment_) { - BWHockeyLog(@"this should not be called from an app store build."); + NSLog(@"this should not be called from an app store build."); return; } @@ -685,7 +685,7 @@ static NSString *kHockeyErrorDomain = @"HockeyErrorDomain"; [invocation invoke]; [invocation getReturnValue:&feedResult]; } else { - BWHockeyLog(@"Error: You need a JSON Framework in your runtime!"); + NSLog(@"Error: You need a JSON Framework in your runtime!"); [self doesNotRecognizeSelector:_cmd]; } #endif