18 lines
482 B
Objective-C
18 lines
482 B
Objective-C
//
|
|
// Copyright (c) 2021 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import <CocoaLumberjack/CocoaLumberjack.h>
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#ifdef DEBUG
|
|
static const NSUInteger ddLogLevel = DDLogLevelAll;
|
|
#else
|
|
static const NSUInteger ddLogLevel = DDLogLevelInfo;
|
|
#endif
|
|
#import <SignalCoreKit/NSObject+OWS.h>
|
|
#import <SignalCoreKit/OWSAsserts.h>
|
|
#import <SignalServiceKit/OWSAnalytics.h>
|
|
#import <SignalServiceKit/SSKAsserts.h>
|
|
#import <SignalServiceKit/TSConstants.h>
|