Skip to content

Commit c9e91c3

Browse files
wweiczhiics
authored andcommitted
Fix move (apache#20)
1 parent 5225a93 commit c9e91c3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/relay/vm/vm.cc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -456,12 +456,13 @@ typename std::enable_if<T::value, void>::type VirtualMachine::DumpStack() {
456456
}
457457
case VMObjectTag::kDatatype: {
458458
VMDatatypeCell* datatype = (VMDatatypeCell*)stack[i].operator->();
459-
std::cout << "fields: " << datatype->fields.size();
460-
std::cout << "\n";
459+
RELAY_LOG(INFO) << "fields: " << datatype->fields.size();
460+
RELAY_LOG(INFO) << "\n";
461461
break;
462462
}
463463
default: {
464464
RELAY_LOG(INFO) << "\n";
465+
break;
465466
}
466467
}
467468
}

0 commit comments

Comments
 (0)