summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLLogTargetFile.h
blob: dbf34c12137b9879514cbba2489b3fe779a578eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  SDLLogTargetFile.h
//  SmartDeviceLink-iOS
//
//  Created by Joel Fischer on 2/28/17.
//  Copyright © 2017 smartdevicelink. All rights reserved.
//

#import <Foundation/Foundation.h>

#import "SDLLogTarget.h"


NS_ASSUME_NONNULL_BEGIN

/**
 The File log will log to a text file on the iPhone in Documents/smartdevicelink/log/#appName##datetime##.log. It will log up to 3 logs which will rollover.
 */
@interface SDLLogTargetFile : NSObject <SDLLogTarget>

@end

NS_ASSUME_NONNULL_END