MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / print_info

Function print_info

atomic-cli/src/output/mod.rs:139–141  ·  view source on GitHub ↗

Print an informational message to stdout. The message is formatted in cyan with an info prefix. # Arguments `message` - The message to print # Example ```rust,ignore print_info("Processing 42 files..."); // Output: ℹ Processing 42 files... ```

(message: &str)

Source from the content-addressed store, hash-verified

137/// // Output: ℹ Processing 42 files...
138/// ```
139pub fn print_info(message: &str) {
140 println!("{} {}", info("ℹ"), info(message));
141}
142
143/// Print a hint/suggestion message to stdout.
144///

Callers 15

runMethod · 0.85
runMethod · 0.85
runMethod · 0.85
run_single_insertFunction · 0.85
run_from_viewFunction · 0.85
run_tagFunction · 0.85
run_pickFunction · 0.85
run_previewFunction · 0.85
print_cross_view_outcomeFunction · 0.85
runMethod · 0.85
executeMethod · 0.85
runMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected