use Dispatch;
use ZomeApiResult;
use JsonString;
/// Prints a string through the stdout of the running Conductor, and also
/// writes that string to the logger in the execution context
/// # Examples
/// ```rust
/// # #[macro_use]
/// # extern crate hdk;
/// # use hdk::error::ZomeApiResult;
///
/// # fn main() {
/// pub fn handle_some_function(content: String) -> ZomeApiResult<()> {
/// // ...
/// hdk::debug("write a message to the logs");
/// // ...
/// Ok(())
/// }
///
/// # }
/// ```