When running the code below, only the first entry gets logged. Structured logging seems not to work when there are emoticons or object descriptions in the message. Is this by design?
let logger = Logger(subsystem: "TestSystem", category: "TestCategory")
logger.log("👍") // Result = 👍
let someEmoji:String = "👎"
logger.log("\(someEmoji)") // Result = empty log line
let someObjectDescription:String = String(describing:self)
logger.log("\(someObjectDescription)") // Result = empty log line