diff options
| author | Marijn Haverbeke <marijnh@gmail.com> | 2011-04-07 22:05:45 +0200 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2011-04-07 15:15:30 -0700 |
| commit | 9a7576fe2cdd169313b5e25be6bf485407adb496 (patch) | |
| tree | 36f5c9a5baaae95be1fb3cdc9b5b76814b08e803 /src/rt/rust.cpp | |
| parent | 6dcf6218b1e0e70e60afe8d1a9f336adad060362 (diff) | |
| download | rust-9a7576fe2cdd169313b5e25be6bf485407adb496.tar.gz rust-9a7576fe2cdd169313b5e25be6bf485407adb496.zip | |
Move to macro-based logging checks in the C++ code
No functions should be called for log statements that turn out to be inactive.
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 46fcb22ea0b..9600b4d519b 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]); } |
