Logs the output of a shard or the value of a variable to the console along with an optional prefix string. The logging level can be specified to control the verbosity of the log output.
"I am a var" = var
2 | Math.Multiply(4) | Log(Level: LogLevel::Info) ;; log previous shard output
var | Log(Level: LogLevel::Warning) ;; log a variable value
3 | Math.Add(4) | Log(Prefix: "String" Level: LogLevel::Error) ;; prefix a string to the logged output
1234
"I am a var" = var
2 | Math.Multiply(4) | Log ;; log previous shard output
var | Log ;; log a variable value
3 | Math.Add(4) | Log(Prefix: "String")