Start implementing more of msclog.swift

This commit is contained in:
Greg Neagle
2018-12-11 06:29:03 -08:00
parent 2f8f4274ab
commit a4ffb4a8b2
@@ -18,6 +18,7 @@ func msc_log(_ source: String, _ event: String, msg: String = "") {
}
func msc_debug_log(_ logMessage: String) {
// stub
print(logMessage)
// Log to Apple System Log facility and also to MSU log if configured
NSLog("%@", logMessage)
msc_log("MSC", "debug", msg: logMessage)
}