Register new snapshots, purge log_err and log_full in favour of log(...).

This commit is contained in:
Graydon Hoare
2011-12-22 17:53:53 -08:00
parent ccb5b6fb25
commit f0dfbe7b1b
243 changed files with 705 additions and 702 deletions

View File

@@ -22,7 +22,7 @@ Tasks may execute in parallel and are scheduled automatically by the runtime.
Example:
> spawn("Hello, World", fn (&&msg: str) {
> log_full(core::debug, msg);
> log(debug, msg);
> });
*/