Merge branch 'bugfix/loggingHandlerFix' into 'develop'

Logging handler fix

### Summary
making handleDebugMessage open, to override it from MF

Co-authored-by: Nandhini Rajendran <nandhini.rajendran@verizon.com>

See merge request https://gitlab.verizon.com/BPHV_MIPS/mvm_core/-/merge_requests/304
This commit is contained in:
Hedden, Kyle Matthew 2024-01-23 14:33:02 +00:00
commit 3e8cd2a6e8

View File

@ -27,7 +27,7 @@ import Foundation
func recordEvent(_ name: String, attributes: [String : Any]?) {} func recordEvent(_ name: String, attributes: [String : Any]?) {}
// MARK: - logging delegate // MARK: - logging delegate
@objc public func handleDebugMessage(_ message: String?) { @objc open func handleDebugMessage(_ message: String?) {
#if LOGGING #if LOGGING
guard let message = message else { return } guard let message = message else { return }
self.print(with: message) self.print(with: message)