Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: update doc on Debug.print #675

Merged
merged 2 commits into from
Dec 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/Debug.mo
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ import Prim "mo:⛔";
module {
/// Prints `text` to output stream.
///
/// NOTE: The output is placed in the replica log. When running on mainnet,
/// this function has no effect.
/// NOTE: When running on an ICP network, all output is written to the [canister log](https://internetcomputer.org/docs/current/developer-docs/smart-contracts/maintain/logs) with the exclusion of any output
/// produced during the execution of non-replicated queries and composite queries.
/// In other environments, like the interpreter and stand-alone wasm engines, the output is written to standard out.
///
/// ```motoko include=import
/// Debug.print "Hello New World!";
Expand Down
Loading