Your Runnable code can log to Atmo's structured output using the logging methods.
For Rust, these methods are available under the log
module, for example log::info()
. For Swift, they are prefixed with Log
, for example Suborbital.LogInfo()
The following namespace methods are available:
Logs the message with the 'info' level
pub fn info(msg: &str)
public func LogInfo(msg: String)
Logs the message with the 'warn' level
pub fn warn(msg: &str)
public func LogWarn(msg: String)
Logs the message with the 'err' level
pub fn error(msg: &str)
public func LogErr(msg: String)