//! # Logging Data Types
//!
//! This module contains data types for the `wascc:logging` capability provider
use crateSample;
/// An operation to request a log write
pub const OP_LOG: &str = "WriteLog";
/// Represents a request to write a log entry. Use this type of log entry if you are
/// pulling or aggregating logs on a per-actor basis from the host. If you just need
/// to dump debug information to the log, use the built-in simple `println` or `consoleLog`
/// function from the actor API