Skip to content

Commit 91e9dda

Browse files
authored
Merge pull request #1127 from AntelopeIO/removeanoclog
remove a log message when OC compilation completes for running contract
2 parents 5d8954b + 4f9fb73 commit 91e9dda

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

libraries/chain/include/eosio/chain/wasm_interface_private.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ struct eosvmoc_tier {
115115
void async_compile_complete(boost::asio::io_context& ctx, const digest_type& code_id, fc::time_point queued_time) {
116116
if (executing_code_hash.load() == code_id) { // is action still executing?
117117
auto elapsed = fc::time_point::now() - queued_time;
118-
ilog("EOS VM OC tier up for ${id} compile complete ${t}ms", ("id", code_id)("t", elapsed.count()/1000));
119118
auto expire_in = std::max(fc::microseconds(0), fc::milliseconds(500) - elapsed);
120119
std::shared_ptr<boost::asio::steady_timer> timer = std::make_shared<boost::asio::steady_timer>(ctx);
121120
timer->expires_from_now(std::chrono::microseconds(expire_in.count()));

0 commit comments

Comments
 (0)