print

Function print 

Source
pub fn print<S: AsRef<str>>(s: S)
Expand description

Prints a debug message to the Juno runtime logs.

This is a shorthand for ic_cdk::api::debug_print,
kept for readability and to align with the concise naming convention used in our helpers.

In the Juno Console, these messages appear in the logs of the current module.

§Example

core::ic::print("Satellite started successfully");