session-ios/Signal/src/environment/DebugLogger.h
Frederic Jacobs c6d44e59e2 TextSecureKit Refactoring
- Using same clang format file for old and new files.
- Moving out all TextSecure code to allow other clients (OS X, iOS) to
  integrate easily TextSecure functionality.
- Use TextSecure API to signup.
2015-12-22 23:41:10 +01:00

29 lines
479 B
Objective-C

//
// DebugLogger.h
// Signal
//
// Created by Frederic Jacobs on 08/08/14.
// Copyright (c) 2014 Open Whisper Systems. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <CocoaLumberjack/DDFileLogger.h>
@interface DebugLogger : NSObject
+ (instancetype)sharedLogger;
- (void)enableFileLogging;
- (void)disableFileLogging;
- (void)enableTTYLogging;
- (void)wipeLogs;
- (NSString *)logsDirectory;
@property (nonatomic) DDFileLogger *fileLogger;
@end