diff --git a/KochavaCore.xcframework/Info.plist b/KochavaCore.xcframework/Info.plist
index 6d307ca..3533a7b 100644
--- a/KochavaCore.xcframework/Info.plist
+++ b/KochavaCore.xcframework/Info.plist
@@ -6,16 +6,19 @@
LibraryIdentifier
- macos-arm64_x86_64
+ watchos-arm64_i386_x86_64-simulator
LibraryPath
KochavaCore.framework
SupportedArchitectures
arm64
+ i386
x86_64
SupportedPlatform
- macos
+ watchos
+ SupportedPlatformVariant
+ simulator
LibraryIdentifier
@@ -30,6 +33,19 @@
SupportedPlatform
ios
+
+ LibraryIdentifier
+ macos-arm64_x86_64
+ LibraryPath
+ KochavaCore.framework
+ SupportedArchitectures
+
+ arm64
+ x86_64
+
+ SupportedPlatform
+ macos
+
LibraryIdentifier
ios-arm64_i386_x86_64-simulator
@@ -76,19 +92,6 @@
SupportedPlatformVariant
maccatalyst
-
- LibraryIdentifier
- watchos-arm64_32_armv7k
- LibraryPath
- KochavaCore.framework
- SupportedArchitectures
-
- arm64_32
- armv7k
-
- SupportedPlatform
- watchos
-
LibraryIdentifier
tvos-arm64
@@ -103,19 +106,16 @@
LibraryIdentifier
- watchos-arm64_i386_x86_64-simulator
+ watchos-arm64_32_armv7k
LibraryPath
KochavaCore.framework
SupportedArchitectures
- arm64
- i386
- x86_64
+ arm64_32
+ armv7k
SupportedPlatform
watchos
- SupportedPlatformVariant
- simulator
CFBundlePackageType
diff --git a/KochavaCore.xcframework/ios-arm64_armv7/KochavaCore.framework/Headers/KVALog.h b/KochavaCore.xcframework/ios-arm64_armv7/KochavaCore.framework/Headers/KVALog.h
index 649b1ad..6a867a7 100644
--- a/KochavaCore.xcframework/ios-arm64_armv7/KochavaCore.framework/Headers/KVALog.h
+++ b/KochavaCore.xcframework/ios-arm64_armv7/KochavaCore.framework/Headers/KVALog.h
@@ -93,6 +93,28 @@
+/*!
+ @property printLinesIndividuallyBool
+
+ @brief A boolean indicating if log messages should be separated by new line and then printed individually.
+
+ @discussion Default false. This can be used to overcome truncation issues, but it will add message prefixes to the beginning of each line.
+ */
+@property (atomic, readwrite) BOOL printLinesIndividuallyBool;
+
+
+
+/*!
+ @property printPrefixString
+
+ @brief A prefix to be added to the beginning of each item printed to the log.
+
+ @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.
+ */
+@property (strong, atomic, nullable, readwrite) NSString *printPrefixString;
+
+
+
@end
diff --git a/KochavaCore.xcframework/ios-arm64_armv7/KochavaCore.framework/Info.plist b/KochavaCore.xcframework/ios-arm64_armv7/KochavaCore.framework/Info.plist
index 1cd2bd7..eb51501 100644
Binary files a/KochavaCore.xcframework/ios-arm64_armv7/KochavaCore.framework/Info.plist and b/KochavaCore.xcframework/ios-arm64_armv7/KochavaCore.framework/Info.plist differ
diff --git a/KochavaCore.xcframework/ios-arm64_armv7/KochavaCore.framework/KochavaCore b/KochavaCore.xcframework/ios-arm64_armv7/KochavaCore.framework/KochavaCore
index 443eb37..7d09dec 100755
Binary files a/KochavaCore.xcframework/ios-arm64_armv7/KochavaCore.framework/KochavaCore and b/KochavaCore.xcframework/ios-arm64_armv7/KochavaCore.framework/KochavaCore differ
diff --git a/KochavaCore.xcframework/ios-arm64_i386_x86_64-simulator/KochavaCore.framework/Headers/KVALog.h b/KochavaCore.xcframework/ios-arm64_i386_x86_64-simulator/KochavaCore.framework/Headers/KVALog.h
index 649b1ad..6a867a7 100644
--- a/KochavaCore.xcframework/ios-arm64_i386_x86_64-simulator/KochavaCore.framework/Headers/KVALog.h
+++ b/KochavaCore.xcframework/ios-arm64_i386_x86_64-simulator/KochavaCore.framework/Headers/KVALog.h
@@ -93,6 +93,28 @@
+/*!
+ @property printLinesIndividuallyBool
+
+ @brief A boolean indicating if log messages should be separated by new line and then printed individually.
+
+ @discussion Default false. This can be used to overcome truncation issues, but it will add message prefixes to the beginning of each line.
+ */
+@property (atomic, readwrite) BOOL printLinesIndividuallyBool;
+
+
+
+/*!
+ @property printPrefixString
+
+ @brief A prefix to be added to the beginning of each item printed to the log.
+
+ @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.
+ */
+@property (strong, atomic, nullable, readwrite) NSString *printPrefixString;
+
+
+
@end
diff --git a/KochavaCore.xcframework/ios-arm64_i386_x86_64-simulator/KochavaCore.framework/Info.plist b/KochavaCore.xcframework/ios-arm64_i386_x86_64-simulator/KochavaCore.framework/Info.plist
index 5cf8b9c..e95a401 100644
Binary files a/KochavaCore.xcframework/ios-arm64_i386_x86_64-simulator/KochavaCore.framework/Info.plist and b/KochavaCore.xcframework/ios-arm64_i386_x86_64-simulator/KochavaCore.framework/Info.plist differ
diff --git a/KochavaCore.xcframework/ios-arm64_i386_x86_64-simulator/KochavaCore.framework/KochavaCore b/KochavaCore.xcframework/ios-arm64_i386_x86_64-simulator/KochavaCore.framework/KochavaCore
index 8ad6db0..748d037 100755
Binary files a/KochavaCore.xcframework/ios-arm64_i386_x86_64-simulator/KochavaCore.framework/KochavaCore and b/KochavaCore.xcframework/ios-arm64_i386_x86_64-simulator/KochavaCore.framework/KochavaCore differ
diff --git a/KochavaCore.xcframework/ios-arm64_i386_x86_64-simulator/KochavaCore.framework/_CodeSignature/CodeResources b/KochavaCore.xcframework/ios-arm64_i386_x86_64-simulator/KochavaCore.framework/_CodeSignature/CodeResources
index 0b842ba..35c5ff3 100644
--- a/KochavaCore.xcframework/ios-arm64_i386_x86_64-simulator/KochavaCore.framework/_CodeSignature/CodeResources
+++ b/KochavaCore.xcframework/ios-arm64_i386_x86_64-simulator/KochavaCore.framework/_CodeSignature/CodeResources
@@ -46,7 +46,7 @@
Headers/KVALog.h
- qGdUKtTni4AbU1FoukU4nNzMjGM=
+ sqdvHD+1k3AfJuxqaSyQOYIRgJg=
Headers/KVAPartner.h
@@ -86,7 +86,7 @@
Info.plist
- TeGJYcbhKTS+VmOPkeNOMjjUXLU=
+ z6NHOC2XgXAPwYeUaZ+eOYlaxLQ=
Modules/KochavaCore.swiftmodule/arm64-apple-ios-simulator.swiftdoc
@@ -98,7 +98,7 @@
Modules/KochavaCore.swiftmodule/arm64-apple-ios-simulator.swiftmodule
- r5Q06e2TnAH8pZWVCduJyDW5vT8=
+ K4G5H5tuovVMkMn0VJbS7C8/PWs=
Modules/KochavaCore.swiftmodule/arm64.swiftdoc
@@ -110,7 +110,7 @@
Modules/KochavaCore.swiftmodule/arm64.swiftmodule
- r5Q06e2TnAH8pZWVCduJyDW5vT8=
+ K4G5H5tuovVMkMn0VJbS7C8/PWs=
Modules/KochavaCore.swiftmodule/i386-apple-ios-simulator.swiftdoc
@@ -122,7 +122,7 @@
Modules/KochavaCore.swiftmodule/i386-apple-ios-simulator.swiftmodule
- /78+DI9TBU7bHVIizEEss2jFh3s=
+ s/RFVfJLfIGI4zdPAgTHTAUmkzI=
Modules/KochavaCore.swiftmodule/i386.swiftdoc
@@ -134,7 +134,7 @@
Modules/KochavaCore.swiftmodule/i386.swiftmodule
- /78+DI9TBU7bHVIizEEss2jFh3s=
+ s/RFVfJLfIGI4zdPAgTHTAUmkzI=
Modules/KochavaCore.swiftmodule/x86_64-apple-ios-simulator.swiftdoc
@@ -146,7 +146,7 @@
Modules/KochavaCore.swiftmodule/x86_64-apple-ios-simulator.swiftmodule
- sYN6zGLbkFLkK7NEcQm9Sphpi+k=
+ 8MqTFIkuCakLXf4+LXjEH7MwJaU=
Modules/KochavaCore.swiftmodule/x86_64.swiftdoc
@@ -158,7 +158,7 @@
Modules/KochavaCore.swiftmodule/x86_64.swiftmodule
- sYN6zGLbkFLkK7NEcQm9Sphpi+k=
+ 8MqTFIkuCakLXf4+LXjEH7MwJaU=
Modules/module.modulemap
@@ -281,11 +281,11 @@
hash
- qGdUKtTni4AbU1FoukU4nNzMjGM=
+ sqdvHD+1k3AfJuxqaSyQOYIRgJg=
hash2
- gcMuYl0s4NX9SYaGDybBRCz0MvslWg6B0QRISe9pz1A=
+ dNXLMt8sgWi7heCQxrh1oL2kAO6ni7HNvKu4uNi9Tgw=
Headers/KVAPartner.h
@@ -413,11 +413,11 @@
hash
- r5Q06e2TnAH8pZWVCduJyDW5vT8=
+ K4G5H5tuovVMkMn0VJbS7C8/PWs=
hash2
- VUSjbDDxcszKMRzHqFL2UA1/oE3Iwsw5OlPcZbb1gVk=
+ EMpPbYU/VVgnKEjDhIb9Jp7H5+Bef1igz14X6dWMROE=
Modules/KochavaCore.swiftmodule/arm64.swiftdoc
@@ -446,11 +446,11 @@
hash
- r5Q06e2TnAH8pZWVCduJyDW5vT8=
+ K4G5H5tuovVMkMn0VJbS7C8/PWs=
hash2
- VUSjbDDxcszKMRzHqFL2UA1/oE3Iwsw5OlPcZbb1gVk=
+ EMpPbYU/VVgnKEjDhIb9Jp7H5+Bef1igz14X6dWMROE=
Modules/KochavaCore.swiftmodule/i386-apple-ios-simulator.swiftdoc
@@ -479,11 +479,11 @@
hash
- /78+DI9TBU7bHVIizEEss2jFh3s=
+ s/RFVfJLfIGI4zdPAgTHTAUmkzI=
hash2
- F4N1RjrYu6ZaCGXwY9ChecV/VCAxrkEhlkGsY2NHyhY=
+ w69OTdNcJhaJPUMgz5lo9vT/LJVM/iAXYGNiSMIm1uE=
Modules/KochavaCore.swiftmodule/i386.swiftdoc
@@ -512,11 +512,11 @@
hash
- /78+DI9TBU7bHVIizEEss2jFh3s=
+ s/RFVfJLfIGI4zdPAgTHTAUmkzI=
hash2
- F4N1RjrYu6ZaCGXwY9ChecV/VCAxrkEhlkGsY2NHyhY=
+ w69OTdNcJhaJPUMgz5lo9vT/LJVM/iAXYGNiSMIm1uE=
Modules/KochavaCore.swiftmodule/x86_64-apple-ios-simulator.swiftdoc
@@ -545,11 +545,11 @@
hash
- sYN6zGLbkFLkK7NEcQm9Sphpi+k=
+ 8MqTFIkuCakLXf4+LXjEH7MwJaU=
hash2
- EHoSrVK5y2DDSuxoeaXH3Qkws876YSSF3CE6jSJHvDY=
+ VThNH4ijvC9Eizh6etK64uRZgdxrIyogawHGEeedu1I=
Modules/KochavaCore.swiftmodule/x86_64.swiftdoc
@@ -578,11 +578,11 @@
hash
- sYN6zGLbkFLkK7NEcQm9Sphpi+k=
+ 8MqTFIkuCakLXf4+LXjEH7MwJaU=
hash2
- EHoSrVK5y2DDSuxoeaXH3Qkws876YSSF3CE6jSJHvDY=
+ VThNH4ijvC9Eizh6etK64uRZgdxrIyogawHGEeedu1I=
Modules/module.modulemap
diff --git a/KochavaCore.xcframework/ios-arm64_x86_64-maccatalyst/KochavaCore.framework/Versions/A/Headers/KVALog.h b/KochavaCore.xcframework/ios-arm64_x86_64-maccatalyst/KochavaCore.framework/Versions/A/Headers/KVALog.h
index 649b1ad..6a867a7 100644
--- a/KochavaCore.xcframework/ios-arm64_x86_64-maccatalyst/KochavaCore.framework/Versions/A/Headers/KVALog.h
+++ b/KochavaCore.xcframework/ios-arm64_x86_64-maccatalyst/KochavaCore.framework/Versions/A/Headers/KVALog.h
@@ -93,6 +93,28 @@
+/*!
+ @property printLinesIndividuallyBool
+
+ @brief A boolean indicating if log messages should be separated by new line and then printed individually.
+
+ @discussion Default false. This can be used to overcome truncation issues, but it will add message prefixes to the beginning of each line.
+ */
+@property (atomic, readwrite) BOOL printLinesIndividuallyBool;
+
+
+
+/*!
+ @property printPrefixString
+
+ @brief A prefix to be added to the beginning of each item printed to the log.
+
+ @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.
+ */
+@property (strong, atomic, nullable, readwrite) NSString *printPrefixString;
+
+
+
@end
diff --git a/KochavaCore.xcframework/ios-arm64_x86_64-maccatalyst/KochavaCore.framework/Versions/A/KochavaCore b/KochavaCore.xcframework/ios-arm64_x86_64-maccatalyst/KochavaCore.framework/Versions/A/KochavaCore
index fa3fec3..6441bf6 100755
Binary files a/KochavaCore.xcframework/ios-arm64_x86_64-maccatalyst/KochavaCore.framework/Versions/A/KochavaCore and b/KochavaCore.xcframework/ios-arm64_x86_64-maccatalyst/KochavaCore.framework/Versions/A/KochavaCore differ
diff --git a/KochavaCore.xcframework/ios-arm64_x86_64-maccatalyst/KochavaCore.framework/Versions/A/Resources/Info.plist b/KochavaCore.xcframework/ios-arm64_x86_64-maccatalyst/KochavaCore.framework/Versions/A/Resources/Info.plist
index 75cc663..69d1328 100644
--- a/KochavaCore.xcframework/ios-arm64_x86_64-maccatalyst/KochavaCore.framework/Versions/A/Resources/Info.plist
+++ b/KochavaCore.xcframework/ios-arm64_x86_64-maccatalyst/KochavaCore.framework/Versions/A/Resources/Info.plist
@@ -17,7 +17,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 5.1.0
+ 5.1.1
CFBundleSupportedPlatforms
MacOSX
diff --git a/KochavaCore.xcframework/ios-arm64_x86_64-maccatalyst/KochavaCore.framework/Versions/A/_CodeSignature/CodeResources b/KochavaCore.xcframework/ios-arm64_x86_64-maccatalyst/KochavaCore.framework/Versions/A/_CodeSignature/CodeResources
index c535fad..167c804 100644
--- a/KochavaCore.xcframework/ios-arm64_x86_64-maccatalyst/KochavaCore.framework/Versions/A/_CodeSignature/CodeResources
+++ b/KochavaCore.xcframework/ios-arm64_x86_64-maccatalyst/KochavaCore.framework/Versions/A/_CodeSignature/CodeResources
@@ -6,7 +6,7 @@
Resources/Info.plist
- 7PFMzfUlMMHNeNNg2OMmFC/7KpI=
+ +0zNkBlsDZJ/1hqjb+Hi99DrCLk=
files2
@@ -85,7 +85,7 @@
hash2
- gcMuYl0s4NX9SYaGDybBRCz0MvslWg6B0QRISe9pz1A=
+ dNXLMt8sgWi7heCQxrh1oL2kAO6ni7HNvKu4uNi9Tgw=
Headers/KVAPartner.h
@@ -169,7 +169,7 @@
hash2
- 5yImFZzJh4qc6sTRRiKx30qZAUfMDKkyWiFiNGwwtxk=
+ aLt/F/Gou11Nd236Js+HoYUiueTc3+aP0u2nWldZz7c=
Modules/KochavaCore.swiftmodule/arm64.swiftdoc
@@ -190,7 +190,7 @@
hash2
- 5yImFZzJh4qc6sTRRiKx30qZAUfMDKkyWiFiNGwwtxk=
+ aLt/F/Gou11Nd236Js+HoYUiueTc3+aP0u2nWldZz7c=
Modules/KochavaCore.swiftmodule/x86_64-apple-ios-macabi.swiftdoc
@@ -211,7 +211,7 @@
hash2
- 1BNovjAocUF07DQhMtjFET8Gf3F4ui7TzGVI9bGkakQ=
+ rWLKmc31Ag9cbB05/0FaCRjUzeuIou+CUCWK+ajVbNI=
Modules/KochavaCore.swiftmodule/x86_64.swiftdoc
@@ -232,7 +232,7 @@
hash2
- 1BNovjAocUF07DQhMtjFET8Gf3F4ui7TzGVI9bGkakQ=
+ rWLKmc31Ag9cbB05/0FaCRjUzeuIou+CUCWK+ajVbNI=
Modules/module.modulemap
@@ -246,7 +246,7 @@
hash2
- 2PUbSPjcKjL13xALi5CUCUuC64xPFzNY/ZHHtu5fjCs=
+ e6Ot0tJiyhiqFoE7jpgXLOTW9gxRIOXQICBxg5shb64=
diff --git a/KochavaCore.xcframework/macos-arm64_x86_64/KochavaCore.framework/Versions/A/Headers/KVALog.h b/KochavaCore.xcframework/macos-arm64_x86_64/KochavaCore.framework/Versions/A/Headers/KVALog.h
index 649b1ad..6a867a7 100644
--- a/KochavaCore.xcframework/macos-arm64_x86_64/KochavaCore.framework/Versions/A/Headers/KVALog.h
+++ b/KochavaCore.xcframework/macos-arm64_x86_64/KochavaCore.framework/Versions/A/Headers/KVALog.h
@@ -93,6 +93,28 @@
+/*!
+ @property printLinesIndividuallyBool
+
+ @brief A boolean indicating if log messages should be separated by new line and then printed individually.
+
+ @discussion Default false. This can be used to overcome truncation issues, but it will add message prefixes to the beginning of each line.
+ */
+@property (atomic, readwrite) BOOL printLinesIndividuallyBool;
+
+
+
+/*!
+ @property printPrefixString
+
+ @brief A prefix to be added to the beginning of each item printed to the log.
+
+ @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.
+ */
+@property (strong, atomic, nullable, readwrite) NSString *printPrefixString;
+
+
+
@end
diff --git a/KochavaCore.xcframework/macos-arm64_x86_64/KochavaCore.framework/Versions/A/KochavaCore b/KochavaCore.xcframework/macos-arm64_x86_64/KochavaCore.framework/Versions/A/KochavaCore
index 0e6b75f..ba8047d 100755
Binary files a/KochavaCore.xcframework/macos-arm64_x86_64/KochavaCore.framework/Versions/A/KochavaCore and b/KochavaCore.xcframework/macos-arm64_x86_64/KochavaCore.framework/Versions/A/KochavaCore differ
diff --git a/KochavaCore.xcframework/macos-arm64_x86_64/KochavaCore.framework/Versions/A/Resources/Info.plist b/KochavaCore.xcframework/macos-arm64_x86_64/KochavaCore.framework/Versions/A/Resources/Info.plist
index 35c3179..3f0d430 100644
--- a/KochavaCore.xcframework/macos-arm64_x86_64/KochavaCore.framework/Versions/A/Resources/Info.plist
+++ b/KochavaCore.xcframework/macos-arm64_x86_64/KochavaCore.framework/Versions/A/Resources/Info.plist
@@ -17,7 +17,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 5.1.0
+ 5.1.1
CFBundleSupportedPlatforms
MacOSX
diff --git a/KochavaCore.xcframework/macos-arm64_x86_64/KochavaCore.framework/Versions/A/_CodeSignature/CodeResources b/KochavaCore.xcframework/macos-arm64_x86_64/KochavaCore.framework/Versions/A/_CodeSignature/CodeResources
index f76396e..ab99c38 100644
--- a/KochavaCore.xcframework/macos-arm64_x86_64/KochavaCore.framework/Versions/A/_CodeSignature/CodeResources
+++ b/KochavaCore.xcframework/macos-arm64_x86_64/KochavaCore.framework/Versions/A/_CodeSignature/CodeResources
@@ -6,7 +6,7 @@
Resources/Info.plist
- egSob8l4o7O6vIS5uzhfAla+JlY=
+ gMBfiKN8sr4RIzXVeCyavTWqD7o=
files2
@@ -85,7 +85,7 @@
hash2
- gcMuYl0s4NX9SYaGDybBRCz0MvslWg6B0QRISe9pz1A=
+ dNXLMt8sgWi7heCQxrh1oL2kAO6ni7HNvKu4uNi9Tgw=
Headers/KVAPartner.h
@@ -169,7 +169,7 @@
hash2
- 5kCVONmQQS23kUTPxfnPsgCRymx7sfJBfx1v0FkTuog=
+ quhIMDxsyJjxWtyAtR6R7NFrhhQUmIiKxU+Kbu256o0=
Modules/KochavaCore.swiftmodule/arm64.swiftdoc
@@ -190,7 +190,7 @@
hash2
- 5kCVONmQQS23kUTPxfnPsgCRymx7sfJBfx1v0FkTuog=
+ quhIMDxsyJjxWtyAtR6R7NFrhhQUmIiKxU+Kbu256o0=
Modules/KochavaCore.swiftmodule/x86_64-apple-macos.swiftdoc
@@ -211,7 +211,7 @@
hash2
- 4bxw1zt0D9lWvQJzCNsO62tONvfSo2yWq+ZfebpjJxU=
+ XQ+Gam1ePuerjDwQxXvGmp8myHaTDeTn8+Axw8uRtoA=
Modules/KochavaCore.swiftmodule/x86_64.swiftdoc
@@ -232,7 +232,7 @@
hash2
- 4bxw1zt0D9lWvQJzCNsO62tONvfSo2yWq+ZfebpjJxU=
+ XQ+Gam1ePuerjDwQxXvGmp8myHaTDeTn8+Axw8uRtoA=
Modules/module.modulemap
@@ -246,7 +246,7 @@
hash2
- bAOM24/SCSxFr8JOoFWqUKhX+AZr0O472Oa/msMPpGE=
+ JR9qF1zmTxjAPogd/WjDPw23wokXodwCDLNGn603Vj8=
diff --git a/KochavaCore.xcframework/tvos-arm64/KochavaCore.framework/Headers/KVALog.h b/KochavaCore.xcframework/tvos-arm64/KochavaCore.framework/Headers/KVALog.h
index 649b1ad..6a867a7 100644
--- a/KochavaCore.xcframework/tvos-arm64/KochavaCore.framework/Headers/KVALog.h
+++ b/KochavaCore.xcframework/tvos-arm64/KochavaCore.framework/Headers/KVALog.h
@@ -93,6 +93,28 @@
+/*!
+ @property printLinesIndividuallyBool
+
+ @brief A boolean indicating if log messages should be separated by new line and then printed individually.
+
+ @discussion Default false. This can be used to overcome truncation issues, but it will add message prefixes to the beginning of each line.
+ */
+@property (atomic, readwrite) BOOL printLinesIndividuallyBool;
+
+
+
+/*!
+ @property printPrefixString
+
+ @brief A prefix to be added to the beginning of each item printed to the log.
+
+ @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.
+ */
+@property (strong, atomic, nullable, readwrite) NSString *printPrefixString;
+
+
+
@end
diff --git a/KochavaCore.xcframework/tvos-arm64/KochavaCore.framework/Info.plist b/KochavaCore.xcframework/tvos-arm64/KochavaCore.framework/Info.plist
index f586e7f..3fb1689 100644
Binary files a/KochavaCore.xcframework/tvos-arm64/KochavaCore.framework/Info.plist and b/KochavaCore.xcframework/tvos-arm64/KochavaCore.framework/Info.plist differ
diff --git a/KochavaCore.xcframework/tvos-arm64/KochavaCore.framework/KochavaCore b/KochavaCore.xcframework/tvos-arm64/KochavaCore.framework/KochavaCore
index 5cb85a7..ab93d80 100755
Binary files a/KochavaCore.xcframework/tvos-arm64/KochavaCore.framework/KochavaCore and b/KochavaCore.xcframework/tvos-arm64/KochavaCore.framework/KochavaCore differ
diff --git a/KochavaCore.xcframework/tvos-arm64_x86_64-simulator/KochavaCore.framework/Headers/KVALog.h b/KochavaCore.xcframework/tvos-arm64_x86_64-simulator/KochavaCore.framework/Headers/KVALog.h
index 649b1ad..6a867a7 100644
--- a/KochavaCore.xcframework/tvos-arm64_x86_64-simulator/KochavaCore.framework/Headers/KVALog.h
+++ b/KochavaCore.xcframework/tvos-arm64_x86_64-simulator/KochavaCore.framework/Headers/KVALog.h
@@ -93,6 +93,28 @@
+/*!
+ @property printLinesIndividuallyBool
+
+ @brief A boolean indicating if log messages should be separated by new line and then printed individually.
+
+ @discussion Default false. This can be used to overcome truncation issues, but it will add message prefixes to the beginning of each line.
+ */
+@property (atomic, readwrite) BOOL printLinesIndividuallyBool;
+
+
+
+/*!
+ @property printPrefixString
+
+ @brief A prefix to be added to the beginning of each item printed to the log.
+
+ @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.
+ */
+@property (strong, atomic, nullable, readwrite) NSString *printPrefixString;
+
+
+
@end
diff --git a/KochavaCore.xcframework/tvos-arm64_x86_64-simulator/KochavaCore.framework/Info.plist b/KochavaCore.xcframework/tvos-arm64_x86_64-simulator/KochavaCore.framework/Info.plist
index b870c5b..58b231f 100644
Binary files a/KochavaCore.xcframework/tvos-arm64_x86_64-simulator/KochavaCore.framework/Info.plist and b/KochavaCore.xcframework/tvos-arm64_x86_64-simulator/KochavaCore.framework/Info.plist differ
diff --git a/KochavaCore.xcframework/tvos-arm64_x86_64-simulator/KochavaCore.framework/KochavaCore b/KochavaCore.xcframework/tvos-arm64_x86_64-simulator/KochavaCore.framework/KochavaCore
index 7dc2b69..2242af8 100755
Binary files a/KochavaCore.xcframework/tvos-arm64_x86_64-simulator/KochavaCore.framework/KochavaCore and b/KochavaCore.xcframework/tvos-arm64_x86_64-simulator/KochavaCore.framework/KochavaCore differ
diff --git a/KochavaCore.xcframework/tvos-arm64_x86_64-simulator/KochavaCore.framework/_CodeSignature/CodeResources b/KochavaCore.xcframework/tvos-arm64_x86_64-simulator/KochavaCore.framework/_CodeSignature/CodeResources
index 5ebb37e..1fa1085 100644
--- a/KochavaCore.xcframework/tvos-arm64_x86_64-simulator/KochavaCore.framework/_CodeSignature/CodeResources
+++ b/KochavaCore.xcframework/tvos-arm64_x86_64-simulator/KochavaCore.framework/_CodeSignature/CodeResources
@@ -46,7 +46,7 @@
Headers/KVALog.h
- qGdUKtTni4AbU1FoukU4nNzMjGM=
+ sqdvHD+1k3AfJuxqaSyQOYIRgJg=
Headers/KVAPartner.h
@@ -86,7 +86,7 @@
Info.plist
- l7l62CzsyXnCZfEoWs2djYQvRjE=
+ rGN++CRK/tt8q7bdDTg06cBQMG8=
Modules/KochavaCore.swiftmodule/arm64-apple-tvos-simulator.swiftdoc
@@ -98,7 +98,7 @@
Modules/KochavaCore.swiftmodule/arm64-apple-tvos-simulator.swiftmodule
- Fs0KdtLrEnd1/iMy3eKPcJp1aAQ=
+ 78CzLikFy1SXYPzSrcQAr9jH+mI=
Modules/KochavaCore.swiftmodule/arm64.swiftdoc
@@ -110,7 +110,7 @@
Modules/KochavaCore.swiftmodule/arm64.swiftmodule
- Fs0KdtLrEnd1/iMy3eKPcJp1aAQ=
+ 78CzLikFy1SXYPzSrcQAr9jH+mI=
Modules/KochavaCore.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc
@@ -122,7 +122,7 @@
Modules/KochavaCore.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule
- YUbo3eZNUG8qKmY+y83h4j3NxJI=
+ 8coKgVr6DT7jpwLPRtfTRk4KlTw=
Modules/KochavaCore.swiftmodule/x86_64.swiftdoc
@@ -134,7 +134,7 @@
Modules/KochavaCore.swiftmodule/x86_64.swiftmodule
- YUbo3eZNUG8qKmY+y83h4j3NxJI=
+ 8coKgVr6DT7jpwLPRtfTRk4KlTw=
Modules/module.modulemap
@@ -257,11 +257,11 @@
hash
- qGdUKtTni4AbU1FoukU4nNzMjGM=
+ sqdvHD+1k3AfJuxqaSyQOYIRgJg=
hash2
- gcMuYl0s4NX9SYaGDybBRCz0MvslWg6B0QRISe9pz1A=
+ dNXLMt8sgWi7heCQxrh1oL2kAO6ni7HNvKu4uNi9Tgw=
Headers/KVAPartner.h
@@ -389,11 +389,11 @@
hash
- Fs0KdtLrEnd1/iMy3eKPcJp1aAQ=
+ 78CzLikFy1SXYPzSrcQAr9jH+mI=
hash2
- qqOHw1shriRUy/M7foQfUj2UgXUinNC7jup+xxsVbzg=
+ 0ww9TYbnNfMoojNnF49QQ5VH3zTpWIeYpweJxgeWBsU=
Modules/KochavaCore.swiftmodule/arm64.swiftdoc
@@ -422,11 +422,11 @@
hash
- Fs0KdtLrEnd1/iMy3eKPcJp1aAQ=
+ 78CzLikFy1SXYPzSrcQAr9jH+mI=
hash2
- qqOHw1shriRUy/M7foQfUj2UgXUinNC7jup+xxsVbzg=
+ 0ww9TYbnNfMoojNnF49QQ5VH3zTpWIeYpweJxgeWBsU=
Modules/KochavaCore.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc
@@ -455,11 +455,11 @@
hash
- YUbo3eZNUG8qKmY+y83h4j3NxJI=
+ 8coKgVr6DT7jpwLPRtfTRk4KlTw=
hash2
- DJV+uZF7S3RFlciNNfB1gVPaO+9ysFnnm/LHKjH3Ado=
+ o3lYPWnMITiO8P+QOxSD0wr5kd6+nmPD9VEYmrjEejM=
Modules/KochavaCore.swiftmodule/x86_64.swiftdoc
@@ -488,11 +488,11 @@
hash
- YUbo3eZNUG8qKmY+y83h4j3NxJI=
+ 8coKgVr6DT7jpwLPRtfTRk4KlTw=
hash2
- DJV+uZF7S3RFlciNNfB1gVPaO+9ysFnnm/LHKjH3Ado=
+ o3lYPWnMITiO8P+QOxSD0wr5kd6+nmPD9VEYmrjEejM=
Modules/module.modulemap
diff --git a/KochavaCore.xcframework/watchos-arm64_32_armv7k/KochavaCore.framework/Headers/KVALog.h b/KochavaCore.xcframework/watchos-arm64_32_armv7k/KochavaCore.framework/Headers/KVALog.h
index 649b1ad..6a867a7 100644
--- a/KochavaCore.xcframework/watchos-arm64_32_armv7k/KochavaCore.framework/Headers/KVALog.h
+++ b/KochavaCore.xcframework/watchos-arm64_32_armv7k/KochavaCore.framework/Headers/KVALog.h
@@ -93,6 +93,28 @@
+/*!
+ @property printLinesIndividuallyBool
+
+ @brief A boolean indicating if log messages should be separated by new line and then printed individually.
+
+ @discussion Default false. This can be used to overcome truncation issues, but it will add message prefixes to the beginning of each line.
+ */
+@property (atomic, readwrite) BOOL printLinesIndividuallyBool;
+
+
+
+/*!
+ @property printPrefixString
+
+ @brief A prefix to be added to the beginning of each item printed to the log.
+
+ @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.
+ */
+@property (strong, atomic, nullable, readwrite) NSString *printPrefixString;
+
+
+
@end
diff --git a/KochavaCore.xcframework/watchos-arm64_32_armv7k/KochavaCore.framework/Info.plist b/KochavaCore.xcframework/watchos-arm64_32_armv7k/KochavaCore.framework/Info.plist
index f555d4a..0c80239 100644
Binary files a/KochavaCore.xcframework/watchos-arm64_32_armv7k/KochavaCore.framework/Info.plist and b/KochavaCore.xcframework/watchos-arm64_32_armv7k/KochavaCore.framework/Info.plist differ
diff --git a/KochavaCore.xcframework/watchos-arm64_32_armv7k/KochavaCore.framework/KochavaCore b/KochavaCore.xcframework/watchos-arm64_32_armv7k/KochavaCore.framework/KochavaCore
index aadfb1e..b53b090 100755
Binary files a/KochavaCore.xcframework/watchos-arm64_32_armv7k/KochavaCore.framework/KochavaCore and b/KochavaCore.xcframework/watchos-arm64_32_armv7k/KochavaCore.framework/KochavaCore differ
diff --git a/KochavaCore.xcframework/watchos-arm64_i386_x86_64-simulator/KochavaCore.framework/Headers/KVALog.h b/KochavaCore.xcframework/watchos-arm64_i386_x86_64-simulator/KochavaCore.framework/Headers/KVALog.h
index 649b1ad..6a867a7 100644
--- a/KochavaCore.xcframework/watchos-arm64_i386_x86_64-simulator/KochavaCore.framework/Headers/KVALog.h
+++ b/KochavaCore.xcframework/watchos-arm64_i386_x86_64-simulator/KochavaCore.framework/Headers/KVALog.h
@@ -93,6 +93,28 @@
+/*!
+ @property printLinesIndividuallyBool
+
+ @brief A boolean indicating if log messages should be separated by new line and then printed individually.
+
+ @discussion Default false. This can be used to overcome truncation issues, but it will add message prefixes to the beginning of each line.
+ */
+@property (atomic, readwrite) BOOL printLinesIndividuallyBool;
+
+
+
+/*!
+ @property printPrefixString
+
+ @brief A prefix to be added to the beginning of each item printed to the log.
+
+ @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.
+ */
+@property (strong, atomic, nullable, readwrite) NSString *printPrefixString;
+
+
+
@end
diff --git a/KochavaCore.xcframework/watchos-arm64_i386_x86_64-simulator/KochavaCore.framework/Info.plist b/KochavaCore.xcframework/watchos-arm64_i386_x86_64-simulator/KochavaCore.framework/Info.plist
index 895a455..c1562d0 100644
Binary files a/KochavaCore.xcframework/watchos-arm64_i386_x86_64-simulator/KochavaCore.framework/Info.plist and b/KochavaCore.xcframework/watchos-arm64_i386_x86_64-simulator/KochavaCore.framework/Info.plist differ
diff --git a/KochavaCore.xcframework/watchos-arm64_i386_x86_64-simulator/KochavaCore.framework/KochavaCore b/KochavaCore.xcframework/watchos-arm64_i386_x86_64-simulator/KochavaCore.framework/KochavaCore
index b61e572..9391e6e 100755
Binary files a/KochavaCore.xcframework/watchos-arm64_i386_x86_64-simulator/KochavaCore.framework/KochavaCore and b/KochavaCore.xcframework/watchos-arm64_i386_x86_64-simulator/KochavaCore.framework/KochavaCore differ
diff --git a/KochavaCore.xcframework/watchos-arm64_i386_x86_64-simulator/KochavaCore.framework/_CodeSignature/CodeResources b/KochavaCore.xcframework/watchos-arm64_i386_x86_64-simulator/KochavaCore.framework/_CodeSignature/CodeResources
index 8e814ec..22285c7 100644
--- a/KochavaCore.xcframework/watchos-arm64_i386_x86_64-simulator/KochavaCore.framework/_CodeSignature/CodeResources
+++ b/KochavaCore.xcframework/watchos-arm64_i386_x86_64-simulator/KochavaCore.framework/_CodeSignature/CodeResources
@@ -46,7 +46,7 @@
Headers/KVALog.h
- qGdUKtTni4AbU1FoukU4nNzMjGM=
+ sqdvHD+1k3AfJuxqaSyQOYIRgJg=
Headers/KVAPartner.h
@@ -86,7 +86,7 @@
Info.plist
- 1jzzBphIz0JOv3CbZSELScZdoA0=
+ 7lpP1RXn/hH0RybPjGsf7a/xIYA=
Modules/KochavaCore.swiftmodule/arm64-apple-watchos-simulator.swiftdoc
@@ -98,7 +98,7 @@
Modules/KochavaCore.swiftmodule/arm64-apple-watchos-simulator.swiftmodule
- l9qONG9NE2RFn3I02yLb5dq6tzY=
+ xRyHYSeim6S8nD893V/HA607M/Y=
Modules/KochavaCore.swiftmodule/arm64.swiftdoc
@@ -110,7 +110,7 @@
Modules/KochavaCore.swiftmodule/arm64.swiftmodule
- l9qONG9NE2RFn3I02yLb5dq6tzY=
+ xRyHYSeim6S8nD893V/HA607M/Y=
Modules/KochavaCore.swiftmodule/i386-apple-watchos-simulator.swiftdoc
@@ -122,7 +122,7 @@
Modules/KochavaCore.swiftmodule/i386-apple-watchos-simulator.swiftmodule
- X5F0P5QvyNwGLUZXhxhPCUoZgnQ=
+ mnm945OwlY1snA8y+3Lr99Vlk+Q=
Modules/KochavaCore.swiftmodule/i386.swiftdoc
@@ -134,7 +134,7 @@
Modules/KochavaCore.swiftmodule/i386.swiftmodule
- X5F0P5QvyNwGLUZXhxhPCUoZgnQ=
+ mnm945OwlY1snA8y+3Lr99Vlk+Q=
Modules/KochavaCore.swiftmodule/x86_64-apple-watchos-simulator.swiftdoc
@@ -146,7 +146,7 @@
Modules/KochavaCore.swiftmodule/x86_64-apple-watchos-simulator.swiftmodule
- kQeQUW0mRkyyxsOAS7cMo+Y8Hzg=
+ 0klbaItkFay82qaYw3BWXHHXyRQ=
Modules/KochavaCore.swiftmodule/x86_64.swiftdoc
@@ -158,7 +158,7 @@
Modules/KochavaCore.swiftmodule/x86_64.swiftmodule
- kQeQUW0mRkyyxsOAS7cMo+Y8Hzg=
+ 0klbaItkFay82qaYw3BWXHHXyRQ=
Modules/module.modulemap
@@ -281,11 +281,11 @@
hash
- qGdUKtTni4AbU1FoukU4nNzMjGM=
+ sqdvHD+1k3AfJuxqaSyQOYIRgJg=
hash2
- gcMuYl0s4NX9SYaGDybBRCz0MvslWg6B0QRISe9pz1A=
+ dNXLMt8sgWi7heCQxrh1oL2kAO6ni7HNvKu4uNi9Tgw=
Headers/KVAPartner.h
@@ -413,11 +413,11 @@
hash
- l9qONG9NE2RFn3I02yLb5dq6tzY=
+ xRyHYSeim6S8nD893V/HA607M/Y=
hash2
- Ni8yHqURcc1wcffEFb/0UCz8ipdYWZP6DYMlvB53uXo=
+ soxu7VZLGr1hMOFuhOyXH/ouKEhXyhj8OnS23VkMP44=
Modules/KochavaCore.swiftmodule/arm64.swiftdoc
@@ -446,11 +446,11 @@
hash
- l9qONG9NE2RFn3I02yLb5dq6tzY=
+ xRyHYSeim6S8nD893V/HA607M/Y=
hash2
- Ni8yHqURcc1wcffEFb/0UCz8ipdYWZP6DYMlvB53uXo=
+ soxu7VZLGr1hMOFuhOyXH/ouKEhXyhj8OnS23VkMP44=
Modules/KochavaCore.swiftmodule/i386-apple-watchos-simulator.swiftdoc
@@ -479,11 +479,11 @@
hash
- X5F0P5QvyNwGLUZXhxhPCUoZgnQ=
+ mnm945OwlY1snA8y+3Lr99Vlk+Q=
hash2
- QillvmOJYdvV+l6yyjSOmu5Y/JWdmi+WwhFhyaBgs1c=
+ vWdG61f3HisGKMJq+aneyOXOqboRd7RPvg3FpsXSX10=
Modules/KochavaCore.swiftmodule/i386.swiftdoc
@@ -512,11 +512,11 @@
hash
- X5F0P5QvyNwGLUZXhxhPCUoZgnQ=
+ mnm945OwlY1snA8y+3Lr99Vlk+Q=
hash2
- QillvmOJYdvV+l6yyjSOmu5Y/JWdmi+WwhFhyaBgs1c=
+ vWdG61f3HisGKMJq+aneyOXOqboRd7RPvg3FpsXSX10=
Modules/KochavaCore.swiftmodule/x86_64-apple-watchos-simulator.swiftdoc
@@ -545,11 +545,11 @@
hash
- kQeQUW0mRkyyxsOAS7cMo+Y8Hzg=
+ 0klbaItkFay82qaYw3BWXHHXyRQ=
hash2
- 4yNZqvtVeIhccSJ3fwsDpSsk75YbukwdGgxiRJXgRcc=
+ PizsWwU1OlkElPk8s/kWCAJiU7HSXi5cpBHIBINPEXY=
Modules/KochavaCore.swiftmodule/x86_64.swiftdoc
@@ -578,11 +578,11 @@
hash
- kQeQUW0mRkyyxsOAS7cMo+Y8Hzg=
+ 0klbaItkFay82qaYw3BWXHHXyRQ=
hash2
- 4yNZqvtVeIhccSJ3fwsDpSsk75YbukwdGgxiRJXgRcc=
+ PizsWwU1OlkElPk8s/kWCAJiU7HSXi5cpBHIBINPEXY=
Modules/module.modulemap