Skip to content

Commit 0821cdd

Browse files
committed
5.1.1
1 parent 2dcdc82 commit 0821cdd

2 files changed

Lines changed: 22 additions & 0 deletions

File tree

libKochavaCoreiOS/KVALog.h

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,28 @@
9393

9494

9595

96+
/*!
97+
@property printLinesIndividuallyBool
98+
99+
@brief A boolean indicating if log messages should be separated by new line and then printed individually.
100+
101+
@discussion Default false. This can be used to overcome truncation issues, but it will add message prefixes to the beginning of each line.
102+
*/
103+
@property (atomic, readwrite) BOOL printLinesIndividuallyBool;
104+
105+
106+
107+
/*!
108+
@property printPrefixString
109+
110+
@brief A prefix to be added to the beginning of each item printed to the log.
111+
112+
@discussion Default nil. This can be set to a value such as "KVA: " to make filtering log messages easier. When this is used in conjunction with var printLinesIndividuallyBool this prefix will be printed at the beginning of each line.
113+
*/
114+
@property (strong, atomic, nullable, readwrite) NSString *printPrefixString;
115+
116+
117+
96118
@end
97119

98120

13.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)