in core/swift54Action/swiftbuild.py.launcher.swift [26:32]
func _whisk_print_error(message: String, error: Error?){
var errStr = "{\"error\":\"\(message)\"}\n"
if let error = error {
errStr = "{\"error\":\"\(message) \(error.localizedDescription)\"\n}"
}
_whisk_print_buffer(jsonString: errStr)
}