Crate zolt_macros
Source pub use colored;
- debug
- Print a message suitable for debug information.
It takes the same arguments as
eprint!
. - debugfmt
- Format a message suitable for debug information.
It takes the same arguments as
format!
. - debugln
- Print a message suitable for debug information, with a newline at the end.
It takes the same arguments as
eprintln!
. - err
- Print a message suitable for error information.
It takes the same arguments as
eprint!
. - errfmt
- Format a message suitable for error information.
It takes the same arguments as
format!
. - errln
- Print a message suitable for error information, with a newline at the end.
It takes the same arguments as
eprintln!
. - info
- Print a message suitable for general information.
It takes the same arguments as
print!
. - infofmt
- Format a message suitable for general information.
It takes the same arguments as
format!
. - infoln
- Print a message suitable for general information, with a newline at the end.
It takes the same arguments as
println!
. - warn
- Print a message suitable for warning information.
It takes the same arguments as
eprint!
. - warnfmt
- Format a message suitable for warning information.
It takes the same arguments as
format!
. - warnln
- Print a message suitable for warning information, with a newline at the end.
It takes the same arguments as
eprintln!
.