Private
Public Access
1
0

Logging: these need to be public oslogs

This commit is contained in:
2024-01-07 18:14:50 -08:00
parent 72527088cc
commit 413fe338ca

View File

@@ -38,14 +38,14 @@ extern void __MBIMLogCommon(MBIMLogLevel level, NSString *format, ...)
switch (level) { switch (level) {
case ML_INFO: case ML_INFO:
os_log_debug(mbimlog, "%@", message); os_log_debug(mbimlog, "%{public}@", message);
break; break;
case ML_NOTIFY: case ML_NOTIFY:
os_log_info(mbimlog, "%@", message); os_log_info(mbimlog, "%{public}@", message);
break; break;
case ML_FATAL: case ML_FATAL:
case ML_ERROR: case ML_ERROR:
os_log_error(mbimlog, "%@", message); os_log_error(mbimlog, "%{public}@", message);
break; break;
} }
} else { } else {