diff --git a/SignalMessaging/utils/DebugLogger.h b/SignalMessaging/utils/DebugLogger.h index 5c61751f8..a3ec93bfb 100644 --- a/SignalMessaging/utils/DebugLogger.h +++ b/SignalMessaging/utils/DebugLogger.h @@ -6,8 +6,6 @@ @interface DebugLogger : NSObject -@property (nonatomic) DDFileLogger *fileLogger; - + (instancetype)sharedLogger; - (void)enableFileLogging; diff --git a/SignalMessaging/utils/DebugLogger.m b/SignalMessaging/utils/DebugLogger.m index 01c900ec8..a4be908e9 100644 --- a/SignalMessaging/utils/DebugLogger.m +++ b/SignalMessaging/utils/DebugLogger.m @@ -11,6 +11,14 @@ #pragma mark Logging - Production logging wants us to write some logs to a file in case we need it for debugging. #import +@interface DebugLogger () + +@property (nonatomic) DDFileLogger *fileLogger; + +@end + +#pragma mark - + @implementation DebugLogger + (instancetype)sharedLogger