#![no_std]
use soroban_sdk::{contract, contractimpl, Bytes, Env, log};
#[contract]
pub struct Contract;
#[contractimpl]
impl Contract {
pub fn hello(env: Env) {
let bytes = Bytes::from_array(&env, &[0; u16::MAX as usize]);
log!(&env, "", bytes);
}
}
That's a pretty big log and it seems to be passing. How much bigger can it get?