summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLLogConfiguration.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-03-08 13:30:17 -0500
committerJoel Fischer <joeljfischer@gmail.com>2017-03-08 13:30:17 -0500
commiteae878256164f6912c9243cc8d2e6d06965b8181 (patch)
treeaea8cafee8c26ff819b36660e348c25f580bd534 /SmartDeviceLink/SDLLogConfiguration.h
parent51c10aa28ee538a456594e991405a0b28219eff0 (diff)
downloadsdl_ios-eae878256164f6912c9243cc8d2e6d06965b8181.tar.gz
Rename some log configuration properties
Diffstat (limited to 'SmartDeviceLink/SDLLogConfiguration.h')
-rw-r--r--SmartDeviceLink/SDLLogConfiguration.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLLogConfiguration.h b/SmartDeviceLink/SDLLogConfiguration.h
index 47e130fb6..c76a9bbfd 100644
--- a/SmartDeviceLink/SDLLogConfiguration.h
+++ b/SmartDeviceLink/SDLLogConfiguration.h
@@ -19,13 +19,13 @@ NS_ASSUME_NONNULL_BEGIN
@interface SDLLogConfiguration : NSObject <NSCopying>
// Any custom logging modules used by the developer's code. Defaults to none.
-@property (copy, nonatomic) NSSet<SDLLogFileModule *> *logModules;
+@property (copy, nonatomic) NSSet<SDLLogFileModule *> *modules;
// Where the logs will attempt to output. Defaults to Console.
-@property (copy, nonatomic) NSSet<id<SDLLogTarget>> *logTargets;
+@property (copy, nonatomic) NSSet<id<SDLLogTarget>> *targets;
// What log filters will run over this session. Defaults to none.
-@property (copy, nonatomic) NSSet<SDLLogFilterBlock> *logFilters;
+@property (copy, nonatomic) NSSet<SDLLogFilterBlock> *filters;
// How detailed of logs will be output. Defaults to Default.
@property (assign, nonatomic) SDLLogFormatType formatType;