We created Driver sample by Xcode template and following macro was added into code:
#define Log(fmt, ...) os_log(OS_LOG_DEFAULT, "Driver - " fmt "\n", ##__VA_ARGS__)
We used this macro in init and start. For example:
bool ForcePlateDriver::init() {
Log("init()");
But our logs are not displayed in Console app.
Did we miss something? Is anything else is required to have logs for Driver?
Our environment:
MacOS Monterey - 12.4 (21F79)
Xcode - Version 13.4 (13F17a)