diff --git a/src/main_sm/fork_10/main/full_tracer.cpp b/src/main_sm/fork_10/main/full_tracer.cpp index d5ca78455..bace4c4fc 100644 --- a/src/main_sm/fork_10/main/full_tracer.cpp +++ b/src/main_sm/fork_10/main/full_tracer.cpp @@ -113,7 +113,7 @@ inline zkresult getFromMemory(Context &ctx, mpz_class &offset, mpz_class &length // If length is too high this is due to an OOG that will stop processing; just pretend to have read nothing if (length > ctx.rom.constants.MAX_MEM_EXPANSION_BYTES) { - zklog.error("getFromMemory() got length=" + length.get_str(10) + " > rom.constants.MAX_MEM_EXPANSION_BYTES=" + to_string(ctx.rom.constants.MAX_MEM_EXPANSION_BYTES)); + zklog.warning("getFromMemory() got length=" + length.get_str(10) + " > rom.constants.MAX_MEM_EXPANSION_BYTES=" + to_string(ctx.rom.constants.MAX_MEM_EXPANSION_BYTES)); return ZKR_SUCCESS; } diff --git a/src/main_sm/fork_12/main/full_tracer.cpp b/src/main_sm/fork_12/main/full_tracer.cpp index 6c63e99a0..ee0e0abd4 100644 --- a/src/main_sm/fork_12/main/full_tracer.cpp +++ b/src/main_sm/fork_12/main/full_tracer.cpp @@ -113,7 +113,7 @@ inline zkresult getFromMemory(Context &ctx, mpz_class &offset, mpz_class &length // If length is too high this is due to an OOG that will stop processing; just pretend to have read nothing if (length > ctx.rom.constants.MAX_MEM_EXPANSION_BYTES) { - zklog.error("getFromMemory() got length=" + length.get_str(10) + " > rom.constants.MAX_MEM_EXPANSION_BYTES=" + to_string(ctx.rom.constants.MAX_MEM_EXPANSION_BYTES)); + zklog.warning("getFromMemory() got length=" + length.get_str(10) + " > rom.constants.MAX_MEM_EXPANSION_BYTES=" + to_string(ctx.rom.constants.MAX_MEM_EXPANSION_BYTES)); return ZKR_SUCCESS; } diff --git a/src/main_sm/fork_9/main/full_tracer.cpp b/src/main_sm/fork_9/main/full_tracer.cpp index 4dbd28475..8812662b0 100644 --- a/src/main_sm/fork_9/main/full_tracer.cpp +++ b/src/main_sm/fork_9/main/full_tracer.cpp @@ -113,7 +113,7 @@ inline zkresult getFromMemory(Context &ctx, mpz_class &offset, mpz_class &length // If length is too high this is due to an OOG that will stop processing; just pretend to have read nothing if (length > ctx.rom.constants.MAX_MEM_EXPANSION_BYTES) { - zklog.error("getFromMemory() got length=" + length.get_str(10) + " > rom.constants.MAX_MEM_EXPANSION_BYTES=" + to_string(ctx.rom.constants.MAX_MEM_EXPANSION_BYTES)); + zklog.warning("getFromMemory() got length=" + length.get_str(10) + " > rom.constants.MAX_MEM_EXPANSION_BYTES=" + to_string(ctx.rom.constants.MAX_MEM_EXPANSION_BYTES)); return ZKR_SUCCESS; }