diff options
Diffstat (limited to 'src/rt/rust.cpp')
| -rw-r--r-- | src/rt/rust.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/rust.cpp b/src/rt/rust.cpp index 46fcb22e..9600b4d5 100644 --- a/src/rt/rust.cpp +++ b/src/rt/rust.cpp @@ -87,10 +87,10 @@ rust_start(uintptr_t main_fn, rust_crate const *crate, int argc, rust_dom *dom = handle->referent(); command_line_args *args = new (dom) command_line_args(dom, argc, argv); - dom->log(rust_log::DOM, "startup: %d args in 0x%" PRIxPTR, + DLOG(dom, rust_log::DOM, "startup: %d args in 0x%" PRIxPTR, args->argc, (uintptr_t)args->args); for (int i = 0; i < args->argc; i++) { - dom->log(rust_log::DOM, + DLOG(dom, rust_log::DOM, "startup: arg[%d] = '%s'", i, args->argv[i]); } |