We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e1ff7e commit 9f668b0Copy full SHA for 9f668b0
src/runtime/vm/vm.cc
@@ -664,7 +664,6 @@ Index VirtualMachine::PopFrame() {
664
665
void VirtualMachine::InvokeGlobal(const VMFunction& func, const std::vector<Object>& args) {
666
DLOG(INFO) << "Invoking global " << func.name << " " << args.size();
667
- std::cout << func << "\n";
668
669
PushFrame(func.params, this->pc + 1, func);
670
for (size_t i = 0; i < args.size(); ++i) {
@@ -742,8 +741,8 @@ void VirtualMachine::Run() {
742
741
main_loop:
743
auto const& instr = this->code[this->pc];
744
DLOG(INFO) << "Executing(" << pc << "): ";
745
- InstructionPrint(std::cout, instr);
746
#if USE_RELAY_DEBUG
+ InstructionPrint(std::cout, instr);
747
#endif // USE_RELAY_DEBUG
748
749
switch (instr.op) {
0 commit comments