summaryrefslogtreecommitdiff
path: root/src/wasm-shell.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm-shell.cpp')
-rw-r--r--src/wasm-shell.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/wasm-shell.cpp b/src/wasm-shell.cpp
index 97c9c91ed..f684d5785 100644
--- a/src/wasm-shell.cpp
+++ b/src/wasm-shell.cpp
@@ -157,7 +157,12 @@ int main(int argc, char **argv) {
Element& curr = *root[i];
IString id = curr[0]->str();
if (id == MODULE) break;
- std::cerr << i << '/' << (root.size()-1) << " CHECKING| " << curr << '\n';
+ Colors::red(std::cerr);
+ std::cerr << i << '/' << (root.size()-1);
+ Colors::green(std::cerr);
+ std::cerr << " CHECKING: ";
+ Colors::normal(std::cerr);
+ std::cerr << curr << '\n';
Element& invoke = *curr[1];
assert(invoke[0]->str() == INVOKE);
IString name = invoke[1]->str();